mirror of
https://github.com/sern-handler/website
synced 2026-06-17 05:12:21 +00:00
12 lines
634 B
TypeScript
12 lines
634 B
TypeScript
export declare function isIdentStart(c: string): boolean;
|
|
export declare function isIdent(c: string): boolean;
|
|
export declare function isHex(c: string): boolean;
|
|
export declare const identEscapeChars: Record<string, boolean>;
|
|
export declare const stringRenderEscapeChars: Record<string, boolean>;
|
|
export declare const whitespaceChars: Record<string, boolean>;
|
|
export declare const quoteChars: Record<string, boolean>;
|
|
export declare const digitsChars: Record<string, boolean>;
|
|
export declare const maxHexLength = 6;
|
|
export declare function escapeIdentifier(s: string): string;
|
|
export declare function escapeString(s: string): string;
|