Skip to main content

@microsoft/fast-element > Callable

Callable type

Represents a callable type such as a function or an object with a "call" method.

Signature:
export declare type Callable = typeof Function.prototype.call | {
call(): void;
};