12-23-上传master
This commit is contained in:
38
src/typings.d.ts
vendored
Normal file
38
src/typings.d.ts
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
declare module 'slash2';
|
||||
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 module 'omit.js';
|
||||
|
||||
// google analytics interface
|
||||
interface GAFieldsObject {
|
||||
eventCategory: string;
|
||||
eventAction: string;
|
||||
eventLabel?: string;
|
||||
eventValue?: number;
|
||||
nonInteraction?: boolean;
|
||||
}
|
||||
interface Window {
|
||||
ga: (
|
||||
command: 'send',
|
||||
hitType: 'event' | 'pageview',
|
||||
fieldsObject: GAFieldsObject | string,
|
||||
) => void;
|
||||
reloadAuthorized: () => void;
|
||||
}
|
||||
|
||||
declare let ga: Function;
|
||||
|
||||
// preview.pro.ant.design only do not use in your production ;
|
||||
// preview.pro.ant.design 专用环境变量,请不要在你的项目中使用它。
|
||||
declare let ANT_DESIGN_PRO_ONLY_DO_NOT_USE_IN_YOUR_PRODUCTION: 'site' | undefined;
|
||||
|
||||
declare const REACT_APP_ENV: 'test' | 'dev' | 'pre' | false;
|
Reference in New Issue
Block a user