timeline-state-resolver-types
Version:
Have timeline, control stuff
14 lines • 517 B
TypeScript
import { DeviceType, TemplateString } from '..';
export declare enum TimelineContentTypeSofieChef {
URL = "url"
}
export type TimelineContentSofieChefAny = TimelineContentSofieChefScene;
export interface TimelineContentSofieChef {
deviceType: DeviceType.SOFIE_CHEF;
type: TimelineContentTypeSofieChef;
}
export interface TimelineContentSofieChefScene extends TimelineContentSofieChef {
type: TimelineContentTypeSofieChef.URL;
url: string | TemplateString;
}
//# sourceMappingURL=sofieChef.d.ts.map