feat(cloud-page) - setup1

This commit is contained in:
2025-09-25 03:26:23 +05:30
parent e86aefd62f
commit ac6d906e03
12 changed files with 979 additions and 206 deletions

View File

@@ -0,0 +1,7 @@
import { CloudFolderUncheckedCreateInputObjectSchema, CloudFileUncheckedCreateInputObjectSchema } from "@repo/db/usedSchemas";
import {z} from "zod";
export type CloudFolder = z.infer<typeof CloudFolderUncheckedCreateInputObjectSchema>;
export type CloudFile = z.infer<typeof CloudFileUncheckedCreateInputObjectSchema>;

View File

@@ -8,3 +8,4 @@ export * from "./staff-types";
export * from "./user-types";
export * from "./databaseBackup-types";
export * from "./notifications-types";
export * from "./cloudStorage-types";