aa-daily-reflections
Version:
A lightweight Node.js library to fetch Daily Reflections from Alcoholics Anonymous (AA)
20 lines (19 loc) • 400 B
TypeScript
export interface DailyReflection {
title: string;
date: string;
day: number;
month: number;
monthName: string;
quote: string;
reference: string;
reflection: string;
copyright: string;
}
export type Language = 'en' | 'es' | 'fr';
export interface ApiResponse {
method: string;
err: number;
data: string;
errMedia?: number;
dataMedia?: string;
}