45 lines
1.1 KiB
TypeScript
45 lines
1.1 KiB
TypeScript
export type EmulatedRegExpOptions = {
|
|
strategy?: string | null;
|
|
useEmulationGroups?: boolean;
|
|
};
|
|
/**
|
|
@typedef {{
|
|
strategy?: string | null;
|
|
useEmulationGroups?: boolean;
|
|
}} 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
|
|
*/
|
|
export class EmulatedRegExp extends RegExp {
|
|
/**
|
|
@overload
|
|
@param {string} pattern
|
|
@param {string} [flags]
|
|
@param {EmulatedRegExpOptions} [options]
|
|
*/
|
|
constructor(pattern: string, flags?: string, options?: EmulatedRegExpOptions);
|
|
/**
|
|
@overload
|
|
@param {EmulatedRegExp} pattern
|
|
@param {string} [flags]
|
|
*/
|
|
constructor(pattern: EmulatedRegExp, flags?: string);
|
|
/**
|
|
Can be used to serialize the arguments used to create the instance.
|
|
@type {{
|
|
pattern: string;
|
|
flags: string;
|
|
options: EmulatedRegExpOptions;
|
|
}}
|
|
*/
|
|
rawArgs: {
|
|
pattern: string;
|
|
flags: string;
|
|
options: EmulatedRegExpOptions;
|
|
};
|
|
#private;
|
|
}
|