mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-10 19:06:34 +03:00
26 lines
490 B
TypeScript
26 lines
490 B
TypeScript
declare module "*.css" {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
|
|
declare module "*.json" {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
|
|
declare var LIB_VERSION: any;
|
|
declare var IS_PRODUCTION: any;
|
|
declare var AOT: any;
|
|
|
|
interface ErrorStackTraceLimit {
|
|
stackTraceLimit: number;
|
|
}
|
|
interface History {
|
|
scrollRestoration: "auto"|"manual";
|
|
}
|
|
interface Window {
|
|
HTMLElement: any
|
|
}
|
|
declare var safari: any;
|
|
interface ErrorConstructor extends ErrorStackTraceLimit {}
|