blow-query
Version:
Programmatically build queries which can be returned as JSON Object and used to fetch data from many sources.
14 lines (12 loc) • 503 B
TypeScript
/// <reference path="node/node.d.ts" />
/// <reference path="mocha/mocha.d.ts" />
/// <reference path="chai/chai.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;
}