UNPKG

aa-daily-reflections

Version:

A lightweight Node.js library to fetch Daily Reflections from Alcoholics Anonymous (AA)

14 lines (13 loc) 472 B
import { DailyReflection, Language } from './types'; export declare class DailyReflections { private language; private httpClient; private parser; constructor(language?: Language); getToday(): Promise<DailyReflection>; getReflection(month: number, day: number): Promise<DailyReflection>; setLanguage(language: Language): void; getLanguage(): Language; } export { DailyReflection, Language } from './types'; export default DailyReflections;