@spiffcommerce/core 0.2.6 → 0.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types.d.ts +4 -4
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -255,20 +255,20 @@ declare class TextStepService implements StepService<_TextStepData1> {
|
|
|
255
255
|
textAlign: (stepData: _TextStepData1) => string;
|
|
256
256
|
}
|
|
257
257
|
export const textStepService: TextStepService;
|
|
258
|
-
interface EditedSteps {
|
|
258
|
+
export interface EditedSteps {
|
|
259
259
|
[stepName: string]: boolean;
|
|
260
260
|
}
|
|
261
|
-
interface MandatorySteps {
|
|
261
|
+
export interface MandatorySteps {
|
|
262
262
|
[stepName: string]: boolean;
|
|
263
263
|
}
|
|
264
|
-
type StepElements = {
|
|
264
|
+
export type StepElements = {
|
|
265
265
|
[key: string]: RegionElement[];
|
|
266
266
|
};
|
|
267
267
|
type StepInitialised = {
|
|
268
268
|
[key: string]: boolean;
|
|
269
269
|
};
|
|
270
270
|
type StepMetadata = FrameMetadata | IllustrationMetadata | ModuleMetadata | TextMetadata;
|
|
271
|
-
interface WorkflowStorage {
|
|
271
|
+
export interface WorkflowStorage {
|
|
272
272
|
[stepName: string]: StepStorage;
|
|
273
273
|
}
|
|
274
274
|
export interface WorkflowMetadata {
|