8 lines
198 B
TypeScript
8 lines
198 B
TypeScript
|
import { Predicate, PredicateOptions } from './predicate';
|
||
|
export declare class BigIntPredicate extends Predicate<bigint> {
|
||
|
/**
|
||
|
@hidden
|
||
|
*/
|
||
|
constructor(options?: PredicateOptions);
|
||
|
}
|