2016-08-28 21:46:10 +03:00
|
|
|
declare module "*.css" {
|
2016-08-23 01:17:16 +03:00
|
|
|
const content: string;
|
|
|
|
export default content;
|
|
|
|
}
|
2016-08-28 21:46:10 +03:00
|
|
|
|
2017-03-09 20:56:50 +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;
|
2016-09-28 00:30:33 +03:00
|
|
|
declare var AOT: any;
|
2016-09-02 23:24:51 +03:00
|
|
|
|
|
|
|
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;
|
2016-09-02 23:24:51 +03:00
|
|
|
interface ErrorConstructor extends ErrorStackTraceLimit {}
|