Interface ModelEvent

interface ModelEvent {
    defaultPrevented: boolean;
    error: Error;
    model: Model;
    timeStamp: number;
    type: string;
    work: Work;
    preventDefault(): void;
}

Hierarchy (view full)

Properties

defaultPrevented: boolean
error: Error
model: Model
timeStamp: number
type: string
work: Work

Methods