declare module '../expect.types' { interface NumberExpect { /** * check if value is a number */ number(): this; /** * check if value is a NaN */ NaN(): this; } interface ArrayExpect { /** * check if value is an array */ array(): this; } interface BigIntExpect { /** * check if value is a bigint */ bigint(): this; } interface BooleanExpect { /** * check if value is a boolean */ boolean(): this; } interface FunctionExpect { /** * check if value is a function */ function(): this; } interface ValueExpect { /** * check if value is null */ null(): this; /** * check if value is undefined */ undefined(): this; } interface ObjectExpect { /** * check if value is a plain object */ object(): this; } interface StringExpect { /** * check if value is a string */ string(): this; } interface SymbolExpect { /** * check if value is a symbol */ symbol(): this; } } export {}; //# sourceMappingURL=type-shorthand.d.ts.map