import root from '$lib/Utility/root'; export interface aniSearchBirthday { name: string; image: string; } export const aniSearchBirthdays = async ( month: number, day: number ): Promise => await (await fetch(root(`/api/birthdays/primary?month=${month}&day=${day}`), {})).json();