blob: 578c1c07723225374bf0929cad2a2c31ab88908f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
import type { LocaleEntry } from './definitions';
/**
* The possible definitions related to companies.
*/
export type CompanyDefinition = LocaleEntry<{
/**
* Business/products related adjectives that can be used to demonstrate data being viewed by a manager.
*/
buzz_adjective: string[];
/**
* Business/products related nouns that can be used to demonstrate data being viewed by a manager.
*/
buzz_noun: string[];
/**
* Business/products related verbs that can be used to demonstrate data being viewed by a manager.
*/
buzz_verb: string[];
/**
* Catchphrase adjectives that can be displayed to an end user.
*/
adjective: string[];
/**
* Catchphrase descriptors that can be displayed to an end user.
*/
descriptor: string[];
/**
* A list of patterns used to generate company names.
*/
name_pattern: string[];
/**
* Catchphrase nouns that can be displayed to an end user.
*/
noun: string[];
}>;
|