mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
6 lines
120 B
TypeScript
6 lines
120 B
TypeScript
export interface SqlDialect {
|
|
rangeSelect?: boolean;
|
|
limitSelect?: boolean;
|
|
quoteIdentifier(s: string): string;
|
|
}
|