Files
template-fullstack-monorepo/packages/common/src/models/lang.ts
Paul Coral 333fd824e3 improve
2025-08-04 22:38:48 +02:00

7 lines
237 B
TypeScript

export const SUPPORTED_LANGS = ["fr", "en"];
export type SupportedLangs = (typeof SUPPORTED_LANGS)[number];
export function isSupportedLang(obj: unknown): obj is SupportedLangs {
return (SUPPORTED_LANGS as unknown[]).includes(obj);
}