Interface IMatcher

Object mapping element matching strings to event handler functions. The matching strings (keys) are used to match event targets to trigger the invocation of their associated handler functions.

interface IMatcher {
    [key: string]: Function | Function[];
}

Indexable

[key: string]: Function | Function[]