-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Interface
interface BotOptions {
}
interface LikeOptions {
maxLikes?: number;
}
class LuckyBot {
constructor(userName: string, password: string, options?: BotOptions) {}
like(hashtag: string, options?: LikeOptions): Promise<void> {}
}Usage
import LuckyBot from 'luckybot';
const bot = new LuckyBot(userName, password)
await bot.like('skateboarding', {maxLikes: 50});
console.log('done');Metadata
Metadata
Assignees
Labels
No labels