The final shape of the work script

interface DemoScript {
    operationOrder: Set<string>;
    operations: {
        [key: string]: DemosWorkOperationScripts;
    };
    steps: {
        [key: string]: WorkStep;
    };
}

Properties

operationOrder: Set<string>
operations: {
    [key: string]: DemosWorkOperationScripts;
}
steps: {
    [key: string]: WorkStep;
}