mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-23 00:22:56 +01:00
6 lines
270 B
TypeScript
6 lines
270 B
TypeScript
declare function addArrToSet(set: any, arr: any): void;
|
|
declare function setToArr(set: any): any[];
|
|
declare function getMicrosoftSQLKeywords(): string[];
|
|
declare function getSQLiteKeywords(): string[];
|
|
declare const keywordsSet: Set<any>;
|
|
declare const keywords: any[];
|