@jsonjoy.com/json-type
Version:
High-performance JSON Pointer implementation
10 lines (9 loc) • 377 B
TypeScript
import type * as schema from '../../schema';
import { AbsType } from './AbsType';
export declare class NumType extends AbsType<schema.NumSchema> {
format(format: schema.NumSchema['format']): this;
gt(gt: schema.NumSchema['gt']): this;
gte(gte: schema.NumSchema['gte']): this;
lt(lt: schema.NumSchema['lt']): this;
lte(lte: schema.NumSchema['lte']): this;
}