export interface IAppFromServerProps { id: string; name: string; appModelId: string; url: string; meta: IAppFromServerPropsMeta; html?: string; iconUrl?: string; secret: string; appType: "app" | "menubar" | "tabbed" | "electron"; // dimension: IAppFromServerPropsDimension; } interface IAppFromServerPropsMeta { isFrameBlocked: boolean; isHttps?: boolean; } export interface IAppFromServerPropsDimension { width: number; height: number; type: string; } export interface IAppFromServerPropsS3PutsEntity { ETag: string; }