@dcp-designable/components
Version:
公共组件及业务组件
31 lines (30 loc) • 866 B
TypeScript
declare module '*.css';
declare module '*.less';
declare module '*.scss';
declare module '*.sass';
declare module '*.svg';
declare module '*.png';
declare module '*.jpg';
declare module '*.jpeg';
declare module '*.gif';
declare module '*.bmp';
declare module '*.tiff';
declare let __webpack_public_path__: string;
declare namespace JSX {
interface IntrinsicElements {
'micro-app': any;
}
}
declare interface Navigator {
msSaveBlob?: (blob: Blob, defaultName?: string) => boolean;
}
declare interface Window {
microApp: any;
__MAIM_APP_ENV__: boolean;
__POWERED_BY_QIANKUN__: boolean;
__INJECTED_PUBLIC_PATH_BY_QIANKUN__: string;
__MICRO_APP_ENVIRONMENT__: boolean;
__MICRO_APP_PUBLIC_PATH__: string;
__MICRO_APP_NAME__: string;
__PLT_GLOBAL_DATA__: Record<string, string | number>;
}