@cainiaofe/cn-utils
Version:
菜鸟前端基础工具库
19 lines (18 loc) • 473 B
TypeScript
import type { ENV } from "../utils/env/types";
import type EventEmitter from 'eventemitter3';
export {};
declare global {
interface Window {
__CURRENT_SCRIPT_SRC__?: string;
__CN_ENV__?: ENV;
__current_micro_config__: {
prefix?: string;
};
_GATEWAY_UA?: {
loadMobile?: boolean;
loadPC?: boolean;
};
__CN_UTILS_EVENTINSTANCE__?: EventEmitter;
_PANDA_EXUI?: any;
}
}