UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

23 lines (22 loc) 438 B
import { PersistentWorkItem } from './persistent-work-item'; /** * The workflow object interface. */ export interface PersistentWorkflow { /** * The name of module. */ moduleName: string; /** * The name of workflow. */ name: string; /** * The version of workflow. */ version: number; /** * The collection of work items. */ collection: PersistentWorkItem<any>[]; }