Interface for a component event handle.

interface IComponentEventHandle {
    update?: (() => any);
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

update?: (() => any)

Function to update the handle.

Type declaration

    • (): any
    • Returns any