full site update
This commit is contained in:
25
node_modules/oniguruma-to-es/dist/cjs/subclass.d.ts
generated
vendored
25
node_modules/oniguruma-to-es/dist/cjs/subclass.d.ts
generated
vendored
@@ -1,17 +1,20 @@
|
||||
export type EmulatedRegExpOptions = {
|
||||
hiddenCaptures?: Array<number>;
|
||||
lazyCompile?: boolean;
|
||||
strategy?: string | null;
|
||||
useEmulationGroups?: boolean;
|
||||
transfers?: Array<[number, Array<number>]>;
|
||||
};
|
||||
/**
|
||||
@typedef {{
|
||||
hiddenCaptures?: Array<number>;
|
||||
lazyCompile?: boolean;
|
||||
strategy?: string | null;
|
||||
useEmulationGroups?: boolean;
|
||||
transfers?: Array<[number, Array<number>]>;
|
||||
}} EmulatedRegExpOptions
|
||||
*/
|
||||
/**
|
||||
Works the same as JavaScript's native `RegExp` constructor in all contexts, but can be given
|
||||
results from `toDetails` to produce the same result as `toRegExp`.
|
||||
@augments RegExp
|
||||
results from `toRegExpDetails` to produce the same result as `toRegExp`.
|
||||
*/
|
||||
export class EmulatedRegExp extends RegExp {
|
||||
/**
|
||||
@@ -28,17 +31,9 @@ export class EmulatedRegExp extends RegExp {
|
||||
*/
|
||||
constructor(pattern: EmulatedRegExp, flags?: string);
|
||||
/**
|
||||
Can be used to serialize the arguments used to create the instance.
|
||||
@type {{
|
||||
pattern: string;
|
||||
flags: string;
|
||||
options: EmulatedRegExpOptions;
|
||||
}}
|
||||
Can be used to serialize the instance.
|
||||
@type {EmulatedRegExpOptions}
|
||||
*/
|
||||
rawArgs: {
|
||||
pattern: string;
|
||||
flags: string;
|
||||
options: EmulatedRegExpOptions;
|
||||
};
|
||||
rawOptions: EmulatedRegExpOptions;
|
||||
#private;
|
||||
}
|
||||
|
Reference in New Issue
Block a user