index.d.ts 462 B

123456789101112131415161718
  1. export declare class RegExp {
  2. $regularExpression?: {
  3. pattern?: string;
  4. options?: string;
  5. };
  6. constructor({ regexp, options }: {
  7. regexp: any;
  8. options: any;
  9. });
  10. parse(): {
  11. $regularExpression: {
  12. pattern: string;
  13. options: string;
  14. };
  15. };
  16. readonly _internalType: import("../utils/symbol").InternalSymbol;
  17. }
  18. export declare function RegExpConstructor(param: any): RegExp;