diff options
| author | Fuwn <[email protected]> | 2024-07-22 16:00:33 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-07-22 16:00:33 -0700 |
| commit | a7fe390be2b812e77395738eba395835dc45f007 (patch) | |
| tree | d821839a4bc0eb8f90e676a24595f49bc716c295 /src/lib/Data/Birthday/aniSearch.ts | |
| parent | fix(SequelSpy): use LinkedTooltip (diff) | |
| download | due.moe-a7fe390be2b812e77395738eba395835dc45f007.tar.xz due.moe-a7fe390be2b812e77395738eba395835dc45f007.zip | |
refactor(Birthday): rename modules
Diffstat (limited to 'src/lib/Data/Birthday/aniSearch.ts')
| -rw-r--r-- | src/lib/Data/Birthday/aniSearch.ts | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/lib/Data/Birthday/aniSearch.ts b/src/lib/Data/Birthday/aniSearch.ts deleted file mode 100644 index 3fa77f61..00000000 --- a/src/lib/Data/Birthday/aniSearch.ts +++ /dev/null @@ -1,12 +0,0 @@ -import root from '$lib/Utility/root'; - -export interface aniSearchBirthday { - name: string; - image: string; -} - -export const aniSearchBirthdays = async ( - month: number, - day: number -): Promise<aniSearchBirthday[]> => - await (await fetch(root(`/api/birthdays/anisearch?month=${month}&day=${day}`), {})).json(); |