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