mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
576 B
576 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;