@noeldemartin/faker
Version:
Generate massive amounts of fake contextual data
36 lines (35 loc) • 830 B
TypeScript
import type { LocaleEntry } from './definitions';
/**
* The possible definitions related to commerce.
*/
export declare type CommerceDefinitions = LocaleEntry<{
/**
* Department names inside a shop.
*/
department: string[];
/**
* Product name generation definitions.
*/
product_name: CommerceProductNameDefinitions;
/**
* Descriptions for products.
*/
product_description: string[];
}>;
/**
* The possible definitions related to product name generation.
*/
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).
*/
product: string[];
}