| 123456789101112131415161718192021 |
- declare const window: Window & typeof globalThis & {flv: any, a: any}
- declare module '@vue-js-cron/ant'
- interface Window {
- __POWERED_BY_QIANKUN__?: boolean;
- __INJECTED_PUBLIC_PATH_BY_QIANKUN__?: any
- }
- interface Object {
- /**
- * @description Map数据格式转为数组
- */
- toArray(): any[];
- /**
- * @description 对象数组转为MAP结构,需要指定转换的key,
- * 指定value时,MAP的value为指定的key,不指定value的key,
- * 则整个对象变为MAP结构的value
- */
- toMap(key: string, valueKey?: string): Map<string, any>
- }
|