mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 21:13:50 +00:00
16 lines
280 B
TypeScript
16 lines
280 B
TypeScript
export type UploadImgProps = {
|
|
base64Img: string;
|
|
expiredTime?: Date;
|
|
metadata?: Record<string, any>;
|
|
shareId?: string;
|
|
};
|
|
|
|
export type UrlFetchParams = {
|
|
urlList: string[];
|
|
selector?: string;
|
|
};
|
|
export type UrlFetchResponse = {
|
|
url: string;
|
|
content: string;
|
|
}[];
|