UNPKG

monaco-sql-languages

Version:

SQL languages for the Monaco Editor, based on monaco-languages.

11 lines (10 loc) 286 B
import '../all.contributions'; export interface IRelaxedToken { startIndex: number; type: string; } export interface ITestItem { line: string; tokens: IRelaxedToken[]; } export declare function testTokenization(_language: string | string[], tests: ITestItem[][]): void;