@viewdo/dxp-story-cli
Version:
DXP Story Management CLI
23 lines (22 loc) • 482 B
TypeScript
import { StateType } from './StateType';
import { RuleSet } from './RuleSet';
import { Html } from './Html';
export interface StateBase {
id: string;
name: string;
url: string;
audio?: {
src: string;
loop?: boolean;
cuePoints?: any[];
[key: string]: any;
};
type: StateType;
next?: RuleSet[];
onEnter?: any[];
onExit?: any[];
embedded?: boolean;
header?: Html;
footer?: Html;
[key: string]: any;
}