mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-10 19:06:34 +03:00
26 lines
481 B
TypeScript
26 lines
481 B
TypeScript
/// <reference path="typings/styled-patch.d.ts" />
|
|
|
|
declare module '*.json' {
|
|
const content: any;
|
|
export = content;
|
|
}
|
|
|
|
declare module '*.svg' {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
|
|
declare module '*.css' {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
|
|
declare var __REDOC_VERSION__: string;
|
|
declare var __REDOC_REVISION__: string;
|
|
|
|
declare var reactHotLoaderGlobal: any;
|
|
|
|
interface Element {
|
|
scrollIntoViewIfNeeded(centerIfNeeded?: boolean): void;
|
|
}
|