UNPKG

193 BTypeScriptView Raw
1import { Runtype } from '../runtype';
2export interface Number extends Runtype<number> {
3 tag: 'number';
4}
5/**
6 * Validates that a value is a number.
7 */
8export declare const Number: Number;