mirror of
https://gitee.com/vuejs/vue.git
synced 2024-12-05 13:38:18 +08:00
25 lines
484 B
JavaScript
25 lines
484 B
JavaScript
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
|
|
}
|
|
}
|