import { object, string, type TypeOf } from 'zod' export const TokenSchema = object({ token: string(), }) export type IToken = TypeOf