redoc/custom.d.ts

26 lines
490 B
TypeScript
Raw Normal View History

2016-08-28 21:46:10 +03:00
declare module "*.css" {
const content: string;
export default content;
}
2016-08-28 21:46:10 +03:00
declare module "*.json" {
const content: string;
export default content;
}
2016-08-28 21:46:10 +03:00
declare var LIB_VERSION: any;
declare var IS_PRODUCTION: any;
declare var AOT: any;
interface ErrorStackTraceLimit {
stackTraceLimit: number;
}
2016-11-23 02:23:32 +03:00
interface History {
scrollRestoration: "auto"|"manual";
}
interface Window {
HTMLElement: any
}
declare var safari: any;
interface ErrorConstructor extends ErrorStackTraceLimit {}