pages-cook
Version:
web-portals
12 lines (11 loc) • 446 B
TypeScript
import { ModuleProptey } from './proptey';
import { ModuleManifest, Application } from '../types';
declare class ModuleState extends ModuleProptey {
constructor(id: string, model: ModuleManifest, application: Application);
get sameOrigin(): boolean;
get level(): number;
get rel(): 'system' | 'frameworks' | 'module';
get uri(): string;
get viewType(): 'portal' | 'iframe' | 'shadow';
}
export { ModuleState };