export type ParseResponse = { title: string; content: string; thumbnail: string; provider: string; favicon: string; } export interface Cooparser { parse: (url: string) => Promise; parseList: (urlList: string[]) => Promise; }