Interface ToggleEventInit

interface ToggleEventInit {
    bubbles?: boolean;
    cancelable?: boolean;
    composed?: boolean;
    newState?: string;
    oldState?: string;
}

Hierarchy (view full)

Properties

bubbles?: boolean
cancelable?: boolean
composed?: boolean
newState?: string
oldState?: string