We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b02094 commit 92553aaCopy full SHA for 92553aa
2 files changed
src/company.ts
src/index.ts
@@ -1,6 +1,7 @@
1
import { Datatype } from './datatype';
2
import { Mersenne } from './mersenne';
3
import { Random } from './random';
4
+import { Company } from './company';
5
6
export interface FakerOptions {
7
locales?: string[];
@@ -164,7 +165,7 @@ export class Faker {
164
165
readonly address = new (require('./address'))(this);
166
readonly animal = new (require('./animal'))(this);
167
readonly commerce = new (require('./commerce'))(this);
- readonly company = new (require('./company'))(this);
168
+ readonly company: Company = new Company(this);
169
readonly database = new (require('./database'))(this);
170
readonly date = new (require('./date'))(this);
171
readonly finance = new (require('./finance'))(this);
0 commit comments