expo-backend-types 0.0.9 → 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.9",
3
+ "version": "0.0.11",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,
@@ -76,8 +76,9 @@
76
76
  "coverageDirectory": "../coverage",
77
77
  "testEnvironment": "node"
78
78
  },
79
- "types": "./types/schema.d.ts",
79
+ "types": "./types/index.d.ts",
80
80
  "files": [
81
+ "./types/index.d.ts",
81
82
  "./types/schema.d.ts",
82
83
  "./types/prisma.d.ts"
83
84
  ],
@@ -0,0 +1,4 @@
1
+ import type { paths as Paths } from 'types/schema';
2
+ import type { prisma as Prisma } from 'types/prisma';
3
+
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;