9 lines
148 B
TypeScript
9 lines
148 B
TypeScript
export type UrlFetchParams = {
|
|
urlList: string[];
|
|
selector?: string;
|
|
};
|
|
export type UrlFetchResponse = {
|
|
url: string;
|
|
content: string;
|
|
}[];
|