easysql/node_modules/sql-formatter/dist/esm/lexer/regexUtil.d.ts
2025-12-29 18:35:04 +08:00

8 lines
470 B
TypeScript

import { PrefixedQuoteType } from './TokenizerOptions.js';
export declare const escapeRegExp: (string: string) => string;
export declare const WHITESPACE_REGEX: RegExp;
export declare const patternToRegex: (pattern: string) => RegExp;
export declare const toCaseInsensitivePattern: (prefix: string) => string;
export declare const withDashes: (pattern: string) => string;
export declare const prefixesPattern: ({ prefixes, requirePrefix }: PrefixedQuoteType) => string;