UNPKG

@pelag/nts

Version:

Creation and support of the multilingual project Next.js

11 lines 301 B
import { ConfigSchema } from './schemes'; import { z } from 'zod'; export type Config = z.infer<typeof ConfigSchema>; export interface Project { projectId: string; projectName: string; allowDownload: boolean; base: string; languages: string[]; } //# sourceMappingURL=types.d.ts.map