UNPKG

@adobe/genstudio-extensibility-sdk

Version:
8 lines (7 loc) 203 B
import { z } from 'zod'; export declare const localeCodeSchema: z.ZodString; export type LocaleCode = z.infer<typeof localeCodeSchema>; export type Locale = { code: LocaleCode; label: string; };