Interface TaskDefinition

interface TaskDefinition {
    properties: {
        all: string[];
        required?: string[];
        schema: IJSONSchema;
    };
    source: string;
    taskType: string;
}

Properties

properties: {
    all: string[];
    required?: string[];
    schema: IJSONSchema;
}

Type declaration

source: string
taskType: string