UNPKG

chatgpt-app

Version:

基于react、webSocket开发的类ChatGPT组件

10 lines (9 loc) 214 B
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;