Something went wrong. Try again.
This repository has no description
Something went wrong. Try again.
397 B · 17 lines
TSX
123456789101112131415161718export interface PlatformState { status: "idle" | "loading" | "failed"; notificationToken: string | null; notificationDestination: string | null;}
export const initialState: PlatformState = { status: "idle", notificationToken: null, notificationDestination: null,};
export type RegisterNotificationTokenBody = { token: string; repoDID?: string; type?: "firebase" | "web";};