DefinitelyTyped/types/http-assert/index.d.ts
2018-12-25 14:07:34 -05:00

34 lines
1.2 KiB
TypeScript

// Type definitions for http-assert 1.4
// Project: https://github.com/jshttp/http-assert
// Definitions by: jKey Lu <https://github.com/jkeylu>
// Peter Squicciarini <https://github.com/stripedpajamas>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
/**
* @param status the status code
* @param msg the message of the error, defaulting to node's text for that status code
* @param opts custom properties to attach to the error object
*/
declare function assert(value: any, status?: number, msg?: string, opts?: {}): void;
declare function assert(value: any, status?: number, opts?: {}): void;
declare namespace assert {
/**
* @param status the status code
* @param msg the message of the error, defaulting to node's text for that status code
* @param opts custom properties to attach to the error object
*/
type Assert = <T>(a: T, b: T, status?: number, msg?: string, opts?: {}) => void;
const equal: Assert;
const notEqual: Assert;
const ok: Assert;
const strictEqual: Assert;
const notStrictEqual: Assert;
const deepEqual: Assert;
const notDeepEqual: Assert;
}
export = assert;