UNPKG

@livy/util

Version:
18 lines (17 loc) 451 B
import { LogLevel } from '@livy/contracts/lib/log-level'; import { Mixin } from '../mixin'; /** * Implements a level-respecting `isHandling` method */ export declare const RespectLevelMixin: Mixin.Wrapper<{ new (...args: any[]): { /** * The minimum activation level for this handler */ level: LogLevel; /** * @inheritdoc */ isHandling(level: LogLevel): boolean; }; }, []>;