Skip to content

Commit

Permalink
feat: import company in index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
MohdImran001 authored and Shinigami92 committed Jan 13, 2022
1 parent 7b02094 commit 92553aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Empty file added src/company.ts
Empty file.
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Datatype } from './datatype';
import { Mersenne } from './mersenne';
import { Random } from './random';
import { Company } from './company';

export interface FakerOptions {
locales?: string[];
Expand Down Expand Up @@ -164,7 +165,7 @@ export class Faker {
readonly address = new (require('./address'))(this);
readonly animal = new (require('./animal'))(this);
readonly commerce = new (require('./commerce'))(this);
readonly company = new (require('./company'))(this);
readonly company: Company = new Company(this);
readonly database = new (require('./database'))(this);
readonly date = new (require('./date'))(this);
readonly finance = new (require('./finance'))(this);
Expand Down

0 comments on commit 92553aa

Please sign in to comment.