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