aiparking_api/node_modules/ow/dist/lib/predicates/boolean.d.ts
2020-02-02 15:24:30 +07:00

16 lines
347 B
TypeScript

import { Predicate, Context } from './predicate';
export declare class BooleanPredicate extends Predicate<boolean> {
/**
* @hidden
*/
constructor(context?: Context<boolean>);
/**
* Test a boolean to be true.
*/
readonly true: this;
/**
* Test a boolean to be false.
*/
readonly false: this;
}