2016-08-23 01:17:16 +03:00
|
|
|
declare module "dropkickjs"
|
|
|
|
declare module "json-schema-ref-parser"
|
|
|
|
declare module "openapi-sampler"
|
|
|
|
declare module "remarkable"
|
|
|
|
declare module "scrollparent"
|
|
|
|
declare module "slugify"
|
|
|
|
declare module "url"
|
|
|
|
declare module "json-pointer";
|
2016-12-29 20:20:29 +03:00
|
|
|
declare module "mark.js";
|
2016-08-23 01:17:16 +03:00
|
|
|
|
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
|
|
|
|
|
|
|
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 {}
|