Interface EventLike

interface EventLike {
    preventDefault(): void;
    stopPropagation(): void;
}

Methods