expo-backend-types 0.0.10 → 0.0.11
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/types/index.d.ts +3 -3
- package/types/prisma.d.ts +2 -2
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import type { paths } from 'types/schema';
|
2
|
-
import type { prisma } from 'types/prisma';
|
1
|
+
import type { paths as Paths } from 'types/schema';
|
2
|
+
import type { prisma as Prisma } from 'types/prisma';
|
3
3
|
|
4
|
-
export {
|
4
|
+
export { Paths, Prisma };
|
package/types/prisma.d.ts
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
import * as
|
1
|
+
import type * as PrismaTypes from '@prisma/client';
|
2
2
|
|
3
|
-
export default
|
3
|
+
export default PrismaTypes;
|