@viewdo/dxp-story-cli
Version:
DXP Story Management CLI
24 lines (23 loc) • 472 B
TypeScript
export interface StripoFolder {
id: number;
name: string;
type: string;
treeRef: string;
children: StripoFolder[] | null;
}
export interface StripoEmail {
emailId: number;
name: string;
editorUrl: string;
previewUrl: string;
updatedTime: string;
hasAmp: boolean;
preheader: string | null;
title: string;
previewImage: string;
}
export interface StripoRawEmail {
id: number;
html: string;
css?: string;
}