Interface Event<T>

Event type used in combination with INotify.

interface Event<T> {
    canceled?: boolean;
    id: T;
    target?: any;
    value?: any;
}

Type Parameters

  • T extends string = string

Hierarchy (view full)

Properties

canceled?: boolean
id: T
target?: any
value?: any

Generated using TypeDoc