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