1 | import { Predicate, type PredicateOptions } from './predicate.js';
|
2 | export declare class BooleanPredicate extends Predicate<boolean> {
|
3 | /**
|
4 | @hidden
|
5 | */
|
6 | constructor(options?: PredicateOptions);
|
7 | /**
|
8 | Test a boolean to be true.
|
9 | */
|
10 | get true(): this;
|
11 | /**
|
12 | Test a boolean to be false.
|
13 | */
|
14 | get false(): this;
|
15 | }
|