ts-asserts
Version:
The package for assert data in typescript.
26 lines (25 loc) • 1.03 kB
TypeScript
import { ArrayAssert } from './array.assert';
import { BooleanAssert } from './boolean.assert';
import { NullOrUndefinedAssert } from './null-or-undefined.assert';
import { NumberAssert } from './number.assert';
import { ObjectAssert } from './object.assert';
import { StringAssert } from './string.assert';
import { SymbolAssert } from './symbol.assert';
import { BigIntAssert } from './bigint.assert';
import { UndefinedAssert } from './undefined.assert';
import { NullAssert } from './null.assert';
import { FunctionAssert } from './function.assert';
export interface AssertsInterface {
Array: typeof ArrayAssert;
BigInt: typeof BigIntAssert;
Boolean: typeof BooleanAssert;
Function: typeof FunctionAssert;
Null: typeof NullAssert;
NullOrUndefined: typeof NullOrUndefinedAssert;
Number: typeof NumberAssert;
Object: typeof ObjectAssert;
String: typeof StringAssert;
Symbol: typeof SymbolAssert;
Undefined: typeof UndefinedAssert;
}
export declare const AllAssertions: AssertsInterface;