insomnia/packages/insomnia-app/app/global.d.ts

31 lines
650 B
TypeScript
Raw Normal View History

declare module '*.svg' {
const content: any;
export default content;
}
declare module '*.png' {
const content: any;
export default content;
}
declare const __DEV__: boolean;
declare namespace NodeJS {
interface Global {
__DEV__: boolean;
/** this is required by codemirror/addon/lint/json-lint */
jsonlint: any;
/** this is required by codemirror/addon/lint/yaml-lint */
jsyaml: any;
}
}
interface Window {
__REDUX_DEVTOOLS_EXTENSION_COMPOSE__: Function;
}
// needed for @hot-loader/react-dom in order for TypeScript to build
declare const __REACT_DEVTOOLS_GLOBAL_HOOK__: undefined | {
checkDCE: Function;
};