feat: migrate to starlight

This commit is contained in:
DuroCodes
2024-05-06 17:15:30 -04:00
parent 767acedea7
commit bb190f2d81
15140 changed files with 2828326 additions and 35408 deletions

11
node_modules/css-selector-parser/dist/cjs/utils.d.ts generated vendored Normal file
View File

@@ -0,0 +1,11 @@
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;