@foxpage/foxpage-types
Version:
foxpage sdk types
7 lines (6 loc) • 312 B
TypeScript
type ContentUpdateInfo = Partial<{
updates: string[];
removes: string[];
}>;
export type ResourceUpdateInfo = Partial<Record<'template' | 'page' | 'variable' | 'material' | 'condition' | 'function' | 'component' | 'tag' | 'file' | 'mock' | 'block' | 'library' | 'plugin', ContentUpdateInfo>>;
export {};