UNPKG

nitter-scraper-v2

Version:

A Twitter scraper that uses Nitter to fetch tweets without authentication

6 lines (5 loc) 176 B
import { Tweet } from './types/Tweet'; /** * Fetch tweets for a given username */ export declare function fetchTweets(username: string, maxPages?: number): Promise<Tweet[]>;