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