@qrush/types 1.1.3 → 1.1.4
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/dist/Location.d.ts +1 -0
- package/dist/Location.js +1 -0
- package/package.json +1 -1
package/dist/Location.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export declare const LOCATION_TYPE_MAPPING: {
|
|
|
11
11
|
};
|
|
12
12
|
export type LocationTypeKey = keyof typeof LOCATION_TYPE_MAPPING;
|
|
13
13
|
export type LocationTypeSlug = (typeof LOCATION_TYPE_MAPPING)[LocationTypeKey];
|
|
14
|
+
export declare const LOCATION_TYPE_TO_SLUG_MAPPING: Record<LocationTypeKey, LocationTypeSlug>;
|
|
14
15
|
export type LocationType = LocationTypeKey[];
|
|
15
16
|
export type LocationTypeSlugArray = LocationTypeSlug[];
|
|
16
17
|
export type LocationTypeArray = LocationTypeKey[];
|
package/dist/Location.js
CHANGED