@livy/util
Version:
Common utilities for the Livy logger
8 lines (7 loc) • 318 B
TypeScript
import { ProcessableHandlerInterface } from '@livy/contracts/lib/processable-handler-interface';
/**
* Check whether a value implements the `ProcessableHandlerInterface`
*
* @param value The value to check
*/
export declare function isProcessableHandlerInterface(value: any): value is ProcessableHandlerInterface;