/* 保存页面数据 */ export type PageParams = { appPageId: string; json: string; type: number; html: string; js: string; } /* 获取页面数据 */ export type PageResponse = { appPageId: string; creationTime: string; fileName: string; id: string; isDeleted: boolean; mobileHtml: string; mobileJson: string; pageName: string; pcHtml: string; pcJson: string; }