@shakerquiz/utilities 0.5.218 → 0.5.219
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -3,22 +3,22 @@ export const Affilation = Object.freeze({
|
|
|
3
3
|
'Franchise': 'Franchise',
|
|
4
4
|
})
|
|
5
5
|
|
|
6
|
+
/** @satisfies {Array<keyof typeof Affilation>} */
|
|
6
7
|
export const Affilations = Object.freeze([
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
'Unknown',
|
|
8
|
+
'Branch',
|
|
9
|
+
'Franchise',
|
|
10
10
|
])
|
|
11
11
|
|
|
12
|
+
/** @satisfies {Record<keyof typeof Affilation, string>} */
|
|
12
13
|
export const AffilationTitle = Object.freeze({
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
['Unknown']: 'Неизвестно',
|
|
14
|
+
'Branch': 'Филиал',
|
|
15
|
+
'Franchise': 'Франшиза',
|
|
16
16
|
})
|
|
17
17
|
|
|
18
|
+
/** @satisfies {Record<keyof typeof Affilation, string>} */
|
|
18
19
|
export const AffilationIcon = Object.freeze({
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
['Unknown']: 'hero/outline/no-symbol',
|
|
20
|
+
'Branch': 'hero/outline/building-office-2',
|
|
21
|
+
'Franchise': 'hero/outline/building-storefront',
|
|
22
22
|
})
|
|
23
23
|
|
|
24
24
|
/** @returns {keyof typeof Affilation | 'Unknown'} */
|