From bee6054f8da67e26dcfdf572103eebabbd6443c0 Mon Sep 17 00:00:00 2001 From: Harsohail Brar <47438886+harsohailB@users.noreply.github.com> Date: Sun, 22 May 2022 13:14:09 -0600 Subject: feat: color module (#801) Co-authored-by: Shinigami --- src/faker.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/faker.ts') diff --git a/src/faker.ts b/src/faker.ts index 3a7962c8..a252a3e0 100644 --- a/src/faker.ts +++ b/src/faker.ts @@ -3,6 +3,7 @@ import { FakerError } from './errors/faker-error'; import type { KnownLocale } from './locales'; import { Address } from './modules/address'; import { Animal } from './modules/animal'; +import { Color } from './modules/color'; import { Commerce } from './modules/commerce'; import { Company } from './modules/company'; import { Database } from './modules/database'; @@ -60,6 +61,7 @@ export class Faker { readonly address: Address = new Address(this); readonly animal: Animal = new Animal(this); + readonly color: Color = new Color(this); readonly commerce: Commerce = new Commerce(this); readonly company: Company = new Company(this); readonly database: Database = new Database(this); -- cgit v1.2.3