Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
17
Frontend-Learner/node_modules/eslint-plugin-regexp/dist/utils/string-literal-parser/parser.d.ts
generated
vendored
Normal file
17
Frontend-Learner/node_modules/eslint-plugin-regexp/dist/utils/string-literal-parser/parser.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import type { Token } from "./tokens";
|
||||
export type StringLiteral = {
|
||||
tokens: Token[];
|
||||
value: string;
|
||||
range: [number, number];
|
||||
};
|
||||
export type EcmaVersion = 3 | 5 | 6 | 2015 | 7 | 2016 | 8 | 2017 | 9 | 2018 | 10 | 2019 | 11 | 2020 | 12 | 2021;
|
||||
export declare function parseStringLiteral(source: string, option?: {
|
||||
start?: number;
|
||||
end?: number;
|
||||
ecmaVersion?: EcmaVersion;
|
||||
}): StringLiteral;
|
||||
export declare function parseStringTokens(source: string, option?: {
|
||||
start?: number;
|
||||
end?: number;
|
||||
ecmaVersion?: EcmaVersion;
|
||||
}): Generator<Token>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue