kibana/docs/development/core/server/kibana-plugin-server.handlerfunction.md
Mikhail Shustov aa695ec637
Normalize EOL symbol in platform docs (#56021)
* use api-extractor generate command with api-documenter config

* update docs

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-01-27 18:42:45 +01:00

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;