diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-12-17 21:29:45 -0800 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2024-12-17 21:29:45 -0800 |
commit | 3262b8342026388a31547645c8543068cada6daf (patch) | |
tree | 11ec7be964fa0cfd0a2908798769882e41cb09fe /src | |
parent | ff02868afc959087c2d7dfd1507572db90f08437 (diff) | |
download | voidsky-3262b8342026388a31547645c8543068cada6daf.tar.zst |
Fix tests
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/notifications/notifications.e2e.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/lib/notifications/notifications.e2e.ts b/src/lib/notifications/notifications.e2e.ts new file mode 100644 index 000000000..0586ac1bf --- /dev/null +++ b/src/lib/notifications/notifications.e2e.ts @@ -0,0 +1,11 @@ +export function useNotificationsRegistration() {} + +export function useRequestNotificationsPermission() { + return async ( + _context: 'StartOnboarding' | 'AfterOnboarding' | 'Login' | 'Home', + ) => {} +} + +export async function decrementBadgeCount(_by: number) {} + +export async function resetBadgeCount() {} |