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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,
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 { paths, prisma };
4
+ export { Paths, Prisma };
package/types/prisma.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- import * as Prisma from '@prisma/client'
1
+ import type * as PrismaTypes from '@prisma/client';
2
2
 
3
- export default Prisma;
3
+ export default PrismaTypes;