@viewdo/dxp-story-cli
Version:
DXP Story Management CLI
20 lines (19 loc) • 425 B
TypeScript
import { StateBase } from './StateBase';
export interface VideoState extends StateBase {
playerSettings: {
[key: string]: any;
};
personalizations?: {
[key: string]: any;
}[];
cuePoints?: {
timeAt?: number;
endAt?: number;
eventName: string;
args?: {
[key: string]: any;
};
[key: string]: any;
}[];
[key: string]: any;
}