error.ts (353B)
1 export const cl_notifications_error = { 2 unavailable: "error.client.notifications.unavailable", 3 read_failure: "error.client.notifications.read_failure" 4 } as const; 5 6 export type ClientNotificationsError = keyof typeof cl_notifications_error; 7 export type ClientNotificationsErrorMessage = (typeof cl_notifications_error)[ClientNotificationsError];