mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 13:03:50 +00:00
9 lines
148 B
TypeScript
9 lines
148 B
TypeScript
export type UrlFetchParams = {
|
|
urlList: string[];
|
|
selector?: string;
|
|
};
|
|
export type UrlFetchResponse = {
|
|
url: string;
|
|
content: string;
|
|
}[];
|