diff options
| author | Hanna <[email protected]> | 2022-07-27 02:22:59 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-07-27 00:22:59 +0000 |
| commit | e007abbc03d4c27e9c487a3f281eb7f9914488c8 (patch) | |
| tree | f119618f117261a31cc9cc6b1fa342a88915e0db /src/definitions/commerce.ts | |
| parent | 22a050e86fd4fb04e4232a9e57fb1602fd3944cc (diff) | |
| download | faker-e007abbc03d4c27e9c487a3f281eb7f9914488c8.tar.xz faker-e007abbc03d4c27e9c487a3f281eb7f9914488c8.zip | |
docs(definitions): minor formatting to definitions' types (#1172)
Diffstat (limited to 'src/definitions/commerce.ts')
| -rw-r--r-- | src/definitions/commerce.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/definitions/commerce.ts b/src/definitions/commerce.ts index 8157c1fc..bde1e849 100644 --- a/src/definitions/commerce.ts +++ b/src/definitions/commerce.ts @@ -8,10 +8,12 @@ export type CommerceDefinitions = LocaleEntry<{ * Department names inside a shop. */ department: string[]; + /** * Product name generation definitions. */ product_name: CommerceProductNameDefinitions; + /** * Descriptions for products. */ @@ -26,10 +28,12 @@ export interface CommerceProductNameDefinitions { * Adjectives describing a product (e.g. tasty). */ adjective: string[]; + /** * Materials describing a product (e.g. wood). */ material: string[]; + /** * Types of products (e.g. chair). */ |
