Skyline/node_modules/ow/dist/predicates/boolean.d.ts

16 lines
338 B
TypeScript
Raw Permalink Normal View History

2021-11-22 17:39:03 +00:00
import { Predicate, PredicateOptions } from './predicate';
export declare class BooleanPredicate extends Predicate<boolean> {
/**
@hidden
*/
constructor(options?: PredicateOptions);
/**
Test a boolean to be true.
*/
get true(): this;
/**
Test a boolean to be false.
*/
get false(): this;
}