mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-24 08:14:47 +00:00
chore: update frontend build for v1.1.81 [skip ci]
This commit is contained in:
35
web/admin-spa/node_modules/strip-literal/dist/index.d.ts
generated
vendored
Normal file
35
web/admin-spa/node_modules/strip-literal/dist/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
import * as js_tokens from 'js-tokens';
|
||||
import { Token } from 'js-tokens';
|
||||
|
||||
interface StripLiteralOptions {
|
||||
/**
|
||||
* Will be called for each string literal. Return false to skip stripping.
|
||||
*/
|
||||
filter?: (s: string) => boolean;
|
||||
/**
|
||||
* Fill the stripped literal with this character.
|
||||
* It must be a single character.
|
||||
*
|
||||
* @default ' '
|
||||
*/
|
||||
fillChar?: string;
|
||||
}
|
||||
|
||||
declare function stripLiteralJsTokens(code: string, options?: StripLiteralOptions): {
|
||||
result: string;
|
||||
tokens: Token[];
|
||||
};
|
||||
|
||||
/**
|
||||
* Strip literal from code.
|
||||
*/
|
||||
declare function stripLiteral(code: string, options?: StripLiteralOptions): string;
|
||||
/**
|
||||
* Strip literal from code, return more detailed information.
|
||||
*/
|
||||
declare function stripLiteralDetailed(code: string, options?: StripLiteralOptions): {
|
||||
result: string;
|
||||
tokens: js_tokens.Token[];
|
||||
};
|
||||
|
||||
export { type StripLiteralOptions, stripLiteral, stripLiteralDetailed, stripLiteralJsTokens };
|
||||
Reference in New Issue
Block a user