diff options
| author | Harsohail Brar <[email protected]> | 2022-05-22 13:14:09 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-05-22 21:14:09 +0200 |
| commit | bee6054f8da67e26dcfdf572103eebabbd6443c0 (patch) | |
| tree | 2390cf171db82a39acea58b793f630a5034feb35 /src/index.ts | |
| parent | bd4d3dbc5ca54983ad28745825e4767c1f291e60 (diff) | |
| download | faker-bee6054f8da67e26dcfdf572103eebabbd6443c0.tar.xz faker-bee6054f8da67e26dcfdf572103eebabbd6443c0.zip | |
feat: color module (#801)
Co-authored-by: Shinigami <[email protected]>
Diffstat (limited to 'src/index.ts')
| -rw-r--r-- | src/index.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts index 64223a09..d437fd9d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4,6 +4,7 @@ import allLocales from './locales'; export type { AddressDefinitions, AnimalDefinitions, + ColorDefinitions, CommerceDefinitions, CommerceProductNameDefinitions, CompanyDefinitions, @@ -27,6 +28,14 @@ export type { } from './definitions'; export { FakerError } from './errors/faker-error'; export type { FakerOptions, UsableLocale, UsedLocales } from './faker'; +export type { + Casing, + ColorFormat, + CSSFunction, + CSSSpace, + NumberColorFormat, + StringColorFormat, +} from './modules/color'; export { Gender } from './modules/name'; export type { GenderType } from './modules/name'; export { Faker }; |
