chore(data-provider): update package.json to add @types/react dependency (#753)

feat(data-provider): import React in types.ts file
This commit is contained in:
Danny Avila 2023-08-04 14:17:06 -04:00 committed by GitHub
parent 956aa6c674
commit 60d0e97425
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 0 deletions

2
package-lock.json generated
View file

@ -26959,6 +26959,7 @@
"@tanstack/query-core": "^4.29.19",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.0",
"@types/react": "^18.2.18",
"jest": "^29.5.0",
"jest-junit": "^16.0.0",
"rimraf": "^5.0.1",
@ -39511,6 +39512,7 @@
"@tanstack/react-query": "^4.28.0",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.0",
"@types/react": "^18.2.18",
"axios": "^1.3.4",
"jest": "^29.5.0",
"jest-junit": "^16.0.0",

View file

@ -36,6 +36,7 @@
"@tanstack/query-core": "^4.29.19",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.0",
"@types/react": "^18.2.18",
"jest": "^29.5.0",
"jest-junit": "^16.0.0",
"rimraf": "^5.0.1",

View file

@ -1,3 +1,5 @@
import * as React from 'react';
export type TMessage = {
messageId: string;
conversationId: string;