mirror of https://github.com/vuejs/vue.git
13 lines
336 B
JavaScript
13 lines
336 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;
|
||
|
}
|
||
|
}
|