{"version":3,"sources":["../../../packages/core/workflow/persistent-workflow.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAE5D;;GAEG;AACH,MAAM,WAAW,kBAAkB;IAC/B;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,UAAU,EAAE,kBAAkB,CAAC,GAAG,CAAC,EAAE,CAAC;CACzC","file":"persistent-workflow.d.ts","sourcesContent":["import { PersistentWorkItem } from './persistent-work-item';\r\n\r\n/**\r\n * The workflow object interface.\r\n */\r\nexport interface PersistentWorkflow {\r\n    /**\r\n     * The name of module.\r\n     */\r\n    moduleName: string;\r\n\r\n    /**\r\n     * The name of workflow.\r\n     */\r\n    name: string;\r\n\r\n    /**\r\n     * The version of workflow.\r\n     */\r\n    version: number;\r\n\r\n    /**\r\n     * The collection of work items.\r\n     */\r\n    collection: PersistentWorkItem<any>[];\r\n}\r\n"]}