UNPKG

blow-validate

Version:
15 lines (13 loc) 541 B
/// <reference path="node/node.d.ts" /> /// <reference path="mocha/mocha.d.ts" /> /// <reference path="chai/chai.d.ts" /> /// <reference path="joi/joi.d.ts" /> declare module "util" { export function isString(object: any): boolean; export function isFunction(object: any): boolean; export function isNumber(object: any): boolean; export function isUndefined(object: any): boolean; export function isNull(object: any): boolean; export function isBoolean(object: any): boolean; export function isObject(object: any): boolean; }