Avoid having diffs in monaco.d.ts

This commit is contained in:
Alex Dima 2020-09-07 13:13:32 +02:00
parent 0b344d31d0
commit 0180119c69
No known key found for this signature in database
GPG key ID: 6E58D7B045760DA0

View file

@ -20,8 +20,7 @@ let result = [
` * Licensed under the MIT License. See License.txt in the project root for license information.`,
` *--------------------------------------------------------------------------------------------*/`,
``,
`declare namespace monaco.languages.json {`,
``
`declare namespace monaco.languages.json {`
];
for (let line of lines) {
if (/^import/.test(line)) {
@ -31,9 +30,9 @@ for (let line of lines) {
line = line.replace(/export declare/g, 'export');
if (line.length > 0) {
line = `\t${line}`;
}
result.push(line);
}
}
result.push(`}`);
result.push(``);