Make all properties in T optional

interface PushNotificationPermissions {
    alert?: boolean;
    badge?: boolean;
    sound?: boolean;
}

Hierarchy (view full)

Properties

Properties

alert?: boolean
badge?: boolean
sound?: boolean