forked from noxious/client
yuhhh
This commit is contained in:
9
src/types/user.ts
Normal file
9
src/types/user.ts
Normal file
@ -0,0 +1,9 @@
|
||||
import { z } from "zod";
|
||||
|
||||
const UserObject = z.object({
|
||||
username: z.string(),
|
||||
});
|
||||
|
||||
type UserType = z.infer<typeof UserObject>;
|
||||
|
||||
export { UserObject, type UserType };
|
Reference in New Issue
Block a user