UNPKG

solive-core

Version:

Solidity Monaco Editor Core Library

49 lines 1.3 kB
export declare const solidityLanguageConfig: { comments: { lineComment: string; blockComment: string[]; }; brackets: string[][]; autoClosingPairs: { open: string; close: string; notIn: string[]; }[]; }; export declare const solidityTokensProvider: { defaultToken: string; tokenPostfix: string; brackets: { token: string; open: string; close: string; }[]; keywords: string[]; operators: string[]; symbols: RegExp; escapes: RegExp; integersuffix: RegExp; floatsuffix: RegExp; tokenizer: { root: ((string | RegExp)[] | (RegExp | { cases: { '@keywords': { token: string; }; '@default': string; }; })[] | { include: string; } | (RegExp | { cases: { '@operators': string; '@default': string; }; })[] | (RegExp | string[])[])[]; whitespace: (string | RegExp)[][]; comment: (string | RegExp)[][]; doccomment: (string | RegExp)[][]; string: (string | RegExp)[][]; }; }; //# sourceMappingURL=solidity.d.ts.map