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 +3 -2
- package/types/index.d.ts +4 -0
- package/types/prisma.d.ts +2 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "expo-backend-types",
|
3
|
-
"version": "0.0.
|
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/
|
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
|
],
|
package/types/index.d.ts
ADDED
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;
|