interface IBulkOperationSettings {
    bulkOperationStore: BulkOperationStore;
    wizardSteps: WizardStep<string>[];
    getContent(): Promise<any>;
}

Properties

bulkOperationStore: BulkOperationStore

Common bulk operation store (with execute method)

wizardSteps: WizardStep<string>[]

Steps for wizard with operation settings

Methods

  • Method for get content for execute operation

    Returns Promise<any>