source: node_modules/randexp/types/index.d.ts

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 378 bytes
Line 
1import * as DRange from "drange";
2
3declare namespace RandExp {}
4
5declare class RandExp {
6 static randexp(pattern: string | RegExp, flags?: string): string;
7 static sugar(): void;
8 constructor(pattern: string | RegExp, flags?: string);
9 gen(): string;
10 defaultRange: DRange;
11 randInt: (from: number, to: number) => number;
12 max: number;
13}
14
15export = RandExp;
Note: See TracBrowser for help on using the repository browser.