mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-23 21:17:30 +00:00
chore: update frontend build for v1.1.83 [skip ci]
This commit is contained in:
37
web/admin-spa/node_modules/js-tokens/index.d.ts
generated
vendored
Normal file
37
web/admin-spa/node_modules/js-tokens/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
export declare type Token =
|
||||
| { type: "StringLiteral"; value: string; closed: boolean }
|
||||
| { type: "NoSubstitutionTemplate"; value: string; closed: boolean }
|
||||
| { type: "TemplateHead"; value: string }
|
||||
| { type: "TemplateMiddle"; value: string }
|
||||
| { type: "TemplateTail"; value: string; closed: boolean }
|
||||
| { type: "RegularExpressionLiteral"; value: string; closed: boolean }
|
||||
| { type: "MultiLineComment"; value: string; closed: boolean }
|
||||
| { type: "SingleLineComment"; value: string }
|
||||
| { type: "HashbangComment"; value: string }
|
||||
| { type: "IdentifierName"; value: string }
|
||||
| { type: "PrivateIdentifier"; value: string }
|
||||
| { type: "NumericLiteral"; value: string }
|
||||
| { type: "Punctuator"; value: string }
|
||||
| { type: "WhiteSpace"; value: string }
|
||||
| { type: "LineTerminatorSequence"; value: string }
|
||||
| { type: "Invalid"; value: string };
|
||||
|
||||
export declare type JSXToken =
|
||||
| { type: "JSXString"; value: string; closed: boolean }
|
||||
| { type: "JSXText"; value: string }
|
||||
| { type: "JSXIdentifier"; value: string }
|
||||
| { type: "JSXPunctuator"; value: string }
|
||||
| { type: "JSXInvalid"; value: string };
|
||||
|
||||
declare function jsTokens(
|
||||
input: string,
|
||||
options: { jsx: true },
|
||||
): Iterable<Token | JSXToken>;
|
||||
|
||||
declare function jsTokens(
|
||||
input: string,
|
||||
options?: { jsx?: boolean },
|
||||
): Iterable<Token>;
|
||||
|
||||
// @ts-expect-error TypeScript complains about _both_ exporting types _and_ using `export =` but it seems to work fine in practice.
|
||||
export = jsTokens;
|
||||
Reference in New Issue
Block a user