mirror of
https://github.com/Dvorinka/Bookra.git
synced 2026-06-04 04:22:59 +00:00
first commit
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"name": "@bookra/shared-types",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": "./src/index.ts"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
export const locales = ["cs", "en"] as const;
|
||||
export type Locale = (typeof locales)[number];
|
||||
export const defaultLocale: Locale = "cs";
|
||||
|
||||
export const tenantPresets = [
|
||||
"salon",
|
||||
"clinic",
|
||||
"massage",
|
||||
"repair",
|
||||
"studio",
|
||||
] as const;
|
||||
export type TenantPreset = (typeof tenantPresets)[number];
|
||||
|
||||
export const planCodes = ["starter", "growth", "multi-location"] as const;
|
||||
export type PlanCode = (typeof planCodes)[number];
|
||||
|
||||
Reference in New Issue
Block a user