Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ interface Aps {
badge?: number
sound?: string | ApsSound
"content-available"?: undefined | 1
"content-changed"?: undefined | true
"mutable-content"?: undefined | 1
"url-args"?: string[]
category?: string
Expand Down Expand Up @@ -267,7 +268,7 @@ export class MultiProvider extends EventEmitter {
shutdown(callback?: () => void): Promise<void>;
}

export type NotificationPushType = 'background' | 'alert' | 'voip' | 'pushtotalk' | 'liveactivity' | 'location' | 'complication' | 'fileprovider' | 'mdm';
export type NotificationPushType = 'background' | 'alert' | 'voip' | 'pushtotalk' | 'liveactivity' | 'location' | 'complication' | 'fileprovider' | 'mdm' | 'widgets';

export type ChannelAction = 'create' | 'read' | 'readAll' | 'delete';

Expand Down
Loading