UNPKG

@trophyso/node

Version:
7 lines (6 loc) 241 B
/** A notification delivery channel. */ export declare const NotificationChannel: { readonly Email: "email"; readonly Push: "push"; }; export type NotificationChannel = (typeof NotificationChannel)[keyof typeof NotificationChannel];