Files
FastGPT/packages/global/common/file/api.d.ts
2023-12-03 20:45:57 +08:00

9 lines
148 B
TypeScript

export type UrlFetchParams = {
urlList: string[];
selector?: string;
};
export type UrlFetchResponse = {
url: string;
content: string;
}[];