export type NotificationProviderInfo = { /** * Unique identifier for the provider. This id must not change between sessions. * * @remarks A non-zero length string. */ id: string; /** * A UI friendly title for the provider. * * @remarks A non-zero length string. */ title: string; /** * Icon url for the provider. */ icon?: string; /** * Unique identifier for the Notification Center instance. * Must be a non-empty string that matches the `serviceId` used in the Web Notification Center instance. */ serviceId: string; };