You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
declare module 'he' {
|
|
|
|
declare function escape(html: string): string;
|
|
|
|
declare function decode(html: string): string;
|
|
|
|
}
|
|
|
|
|
|
|
|
declare module 'source-map' {
|
|
|
|
declare class SourceMapGenerator {
|
|
|
|
setSourceContent(filename: string, content: string): void;
|
|
|
|
addMapping(mapping: Object): void;
|
|
|
|
toString(): string;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
declare module 'lru-cache' {
|
|
|
|
declare var exports: {
|
|
|
|
(): any
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
declare module 'de-indent' {
|
|
|
|
declare var exports: {
|
|
|
|
(input: string): string
|
|
|
|
}
|
|
|
|
}
|