7 lines
237 B
TypeScript
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);
|
|
}
|