UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

19 lines (17 loc) 471 B
/** * Persistent workflow store class. */ export class PersistentWorkflowStore { moduleName; name; /** * Initializes a new instance of the PersistentWorkflowStore abstract class. * @param moduleName the module name. * @param name the key name to index the same workflow. */ constructor(moduleName, name) { this.moduleName = moduleName; this.name = name; } } //# sourceMappingURL=persistent-workflow-store.js.map