mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-11-21 13:57:57 -05:00
feat: Video Trimmer and more
This commit is contained in:
9
frontend-tools/video-editor/shared/schema.ts
Normal file
9
frontend-tools/video-editor/shared/schema.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { z } from "zod";
|
||||
|
||||
export const insertUserSchema = z.object({
|
||||
username: z.string(),
|
||||
password: z.string(),
|
||||
});
|
||||
|
||||
export type InsertUser = z.infer<typeof insertUserSchema>;
|
||||
export type User = InsertUser & { id: number };
|
||||
Reference in New Issue
Block a user