mirror of
https://gitee.com/vuejs/vue.git
synced 2024-11-30 11:07:51 +08:00
25 lines
498 B
JavaScript
25 lines
498 B
JavaScript
declare module 'entities' {
|
|
declare function encodeHTML(html: string): string;
|
|
declare function decodeHTML(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
|
|
}
|
|
}
|