fedicrawl/application/src/Fediverse/Providers/FeedProviderMethod.ts

9 wiersze
206 B
TypeScript
Czysty Zwykły widok Historia

2022-11-22 15:37:11 +00:00
import RobotsTxt from '../RobotsTxt/RobotsTxt.js'
import { FeedData } from './FeedData'
2022-09-18 11:32:25 +00:00
export type FeedProviderMethod = (
domain: string,
2022-11-22 15:37:11 +00:00
page: number,
robotsTxt: RobotsTxt
2022-09-18 11:32:25 +00:00
) => Promise<FeedData[]>