mirror of
https://github.com/tinyauthapp/tinyauth.git
synced 2026-08-31 02:23:31 +08:00
11 lines
267 B
TypeScript
11 lines
267 B
TypeScript
import { z } from "zod";
|
|
|
|
export const appContextSchema = z.object({
|
|
configuredProviders: z.array(z.string()),
|
|
disableContinue: z.boolean(),
|
|
title: z.string(),
|
|
genericName: z.string(),
|
|
});
|
|
|
|
export type AppContextSchemaType = z.infer<typeof appContextSchema>;
|