expo-backend-types 0.0.9 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +3 -2
  2. package/types/index.d.ts +4 -0
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.10",
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 } from 'types/schema';
2
+ import type { prisma } from 'types/prisma';
3
+
4
+ export { paths, prisma };