@impler/shared
Version:
Reusable types and classes to shared between apps and libraries
13 lines • 380 B
TypeScript
export interface ICustomization {
_id: string;
_templateId: string;
recordVariables: string[];
chunkVariables: string[];
recordFormat: string;
chunkFormat: string;
combinedFormat: string;
isCombinedFormatUpdated: boolean;
isRecordFormatUpdated: boolean;
isChunkFormatUpdated: boolean;
}
//# sourceMappingURL=Customization.interface.d.ts.map