UNPKG
chatgpt-app
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
基于react、webSocket开发的类ChatGPT组件
github.com/cmux/chatgpt-app
cmux/chatgpt-app
chatgpt-app
/
dist
/
utils
/
request.d.ts
10 lines
(9 loc)
•
214 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
type
{
Method
}
from
'axios'
;
type
Ioptions
= {
url
:
string
;
data
?:
any
;
headers
?:
any
;
method
:
Method
; };
declare
const
request
:
(
options
:
Ioptions
) =>
Promise
<
any
>;
export
default
request;