mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 18:27:59 -04:00
* use api-extractor generate command with api-documenter config * update docs Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
563 B
563 B
Home > kibana-plugin-server > HandlerFunction
HandlerFunction type
A function that accepts a context object and an optional number of additional arguments. Used for the generic types in IContextContainer
Signature:
export declare type HandlerFunction<T extends object> = (context: T, ...args: any[]) => any;