deploy: v0.12 fix 存档key名

This commit is contained in:
2026-06-24 03:09:02 +00:00
parent 7a08d49fe3
commit e0a5281119
58743 changed files with 7297269 additions and 39505 deletions
+27
View File
@@ -0,0 +1,27 @@
import {StreamParser} from "@codemirror/language"
export declare function sql(conf: {
client?: {[word: string]: any},
atoms?: {[word: string]: any},
builtin?: {[word: string]: any},
keywords?: {[word: string]: any},
operatorChars?: RegExp,
support?: {[word: string]: any},
hooks?: {[hook: string]: any},
dateSQL?: {[word: string]: any},
backslashStringEscapes?: boolean,
brackets?: RegExp,
punctuation?: RegExp
}): StreamParser<unknown>
export declare const standardSQL: StreamParser<unknown>
export declare const msSQL: StreamParser<unknown>
export declare const mySQL: StreamParser<unknown>
export declare const mariaDB: StreamParser<unknown>
export declare const sqlite: StreamParser<unknown>
export declare const cassandra: StreamParser<unknown>
export declare const plSQL: StreamParser<unknown>
export declare const hive: StreamParser<unknown>
export declare const pgSQL: StreamParser<unknown>
export declare const gql: StreamParser<unknown>
export declare const gpSQL: StreamParser<unknown>
export declare const sparkSQL: StreamParser<unknown>
export declare const esper: StreamParser<unknown>