mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
652 B
652 B
Home > kibana-plugin-server > HandlerParameters
HandlerParameters type
Extracts the types of the additional arguments of a HandlerFunction, excluding the HandlerContextType.
Signature:
export declare type HandlerParameters<T extends HandlerFunction<any>> = T extends (context: any, ...args: infer U) => any ? U : never;