@basetime/bldr-sfmc
Version:
CLI application for SFMC Development workflow and package deployment
23 lines (21 loc) • 413 B
text/typescript
interface StashItem {
name?: string;
path: string;
assetType?: {
name: string;
id: number;
};
bldr: {
id?: number;
context: {
name: string;
rootName: string;
context: string;
contentType: string;
};
bldrId: string;
folderPath: string;
};
fileContent: any;
}
export { StashItem };