@djaouad10/shared-types 1.0.30 → 1.0.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +11 -16
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2605,23 +2605,18 @@ declare const auth: import("better-auth").Auth<{
|
|
|
2605
2605
|
}>;
|
|
2606
2606
|
export type Auth = typeof auth;
|
|
2607
2607
|
declare const ourFileRouter: {
|
|
2608
|
-
productImage: import("uploadthing/
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
event: undefined;
|
|
2619
|
-
};
|
|
2620
|
-
_errorShape: import("@uploadthing/shared").Json;
|
|
2621
|
-
_errorFn: "unsetMarker" & {
|
|
2622
|
-
__brand: "unsetMarker";
|
|
2608
|
+
productImage: import("node_modules/uploadthing/dist/types-Bs3w2d_3.js").FileRoute<{
|
|
2609
|
+
input: undefined;
|
|
2610
|
+
output: {
|
|
2611
|
+
url: string;
|
|
2612
|
+
name: string;
|
|
2613
|
+
key: string;
|
|
2614
|
+
type: string;
|
|
2615
|
+
metadata: {
|
|
2616
|
+
userId: string;
|
|
2617
|
+
};
|
|
2623
2618
|
};
|
|
2624
|
-
|
|
2619
|
+
errorShape: import("@uploadthing/shared").Json;
|
|
2625
2620
|
}>;
|
|
2626
2621
|
};
|
|
2627
2622
|
export type OurFileRouter = typeof ourFileRouter;
|