UNPKG

jaywalk

Version:
11 lines (10 loc) 385 B
import { Any, AnyOptions } from './any'; import { Context } from '../utils'; export interface BooleanOptions extends AnyOptions { } export declare class Boolean extends Any implements BooleanOptions { type: string; constructor(options?: BooleanOptions); _isType(value: any, path: string[], context: Context): number; _extend(options: BooleanOptions): BooleanOptions; }