Object mapping element mapping 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 Matcher {
    [key: string]: Function | Function[];
}

Indexable

[key: string]: Function | Function[]