mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 06:00:56 +02:00
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:
parent
956aa6c674
commit
60d0e97425
3 changed files with 5 additions and 0 deletions
2
package-lock.json
generated
2
package-lock.json
generated
|
@ -26959,6 +26959,7 @@
|
||||||
"@tanstack/query-core": "^4.29.19",
|
"@tanstack/query-core": "^4.29.19",
|
||||||
"@types/jest": "^29.5.2",
|
"@types/jest": "^29.5.2",
|
||||||
"@types/node": "^20.3.0",
|
"@types/node": "^20.3.0",
|
||||||
|
"@types/react": "^18.2.18",
|
||||||
"jest": "^29.5.0",
|
"jest": "^29.5.0",
|
||||||
"jest-junit": "^16.0.0",
|
"jest-junit": "^16.0.0",
|
||||||
"rimraf": "^5.0.1",
|
"rimraf": "^5.0.1",
|
||||||
|
@ -39511,6 +39512,7 @@
|
||||||
"@tanstack/react-query": "^4.28.0",
|
"@tanstack/react-query": "^4.28.0",
|
||||||
"@types/jest": "^29.5.2",
|
"@types/jest": "^29.5.2",
|
||||||
"@types/node": "^20.3.0",
|
"@types/node": "^20.3.0",
|
||||||
|
"@types/react": "^18.2.18",
|
||||||
"axios": "^1.3.4",
|
"axios": "^1.3.4",
|
||||||
"jest": "^29.5.0",
|
"jest": "^29.5.0",
|
||||||
"jest-junit": "^16.0.0",
|
"jest-junit": "^16.0.0",
|
||||||
|
|
|
@ -36,6 +36,7 @@
|
||||||
"@tanstack/query-core": "^4.29.19",
|
"@tanstack/query-core": "^4.29.19",
|
||||||
"@types/jest": "^29.5.2",
|
"@types/jest": "^29.5.2",
|
||||||
"@types/node": "^20.3.0",
|
"@types/node": "^20.3.0",
|
||||||
|
"@types/react": "^18.2.18",
|
||||||
"jest": "^29.5.0",
|
"jest": "^29.5.0",
|
||||||
"jest-junit": "^16.0.0",
|
"jest-junit": "^16.0.0",
|
||||||
"rimraf": "^5.0.1",
|
"rimraf": "^5.0.1",
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
import * as React from 'react';
|
||||||
|
|
||||||
export type TMessage = {
|
export type TMessage = {
|
||||||
messageId: string;
|
messageId: string;
|
||||||
conversationId: string;
|
conversationId: string;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue