interface FactoryTaskParams {
    attrs?: {
        isFormatted?: boolean;
        name: string;
        value: any;
    }[];
    content?: any;
    count: any;
    isContentFormatted?: boolean;
    tag?: string;
}

Hierarchy

  • AnyParams
    • FactoryTaskParams

Properties

attrs?: {
    isFormatted?: boolean;
    name: string;
    value: any;
}[]
content?: any
count: any
isContentFormatted?: boolean
tag?: string