This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/modelSchema/token.ts

7 lines
157 B
TypeScript
Raw Normal View History

2022-08-11 21:42:45 +00:00
import { object, string, type TypeOf } from 'zod'
export const TokenSchema = object({
token: string(),
})
export type IToken = TypeOf<typeof TokenSchema>