UNPKG

expect-type

Version:

[![CI](https://github.com/mmkal/expect-type/actions/workflows/ci.yml/badge.svg)](https://github.com/mmkal/expect-type/actions/workflows/ci.yml) ![npm](https://img.shields.io/npm/dt/expect-type) [![X (formerly Twitter) Follow](https://img.shields.io/twitte

67 lines (66 loc) 1.13 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * @internal */ const inverted = Symbol('inverted'); /** * @internal */ const expectNull = Symbol('expectNull'); /** * @internal */ const expectUndefined = Symbol('expectUndefined'); /** * @internal */ const expectNumber = Symbol('expectNumber'); /** * @internal */ const expectString = Symbol('expectString'); /** * @internal */ const expectBoolean = Symbol('expectBoolean'); /** * @internal */ const expectVoid = Symbol('expectVoid'); /** * @internal */ const expectFunction = Symbol('expectFunction'); /** * @internal */ const expectObject = Symbol('expectObject'); /** * @internal */ const expectArray = Symbol('expectArray'); /** * @internal */ const expectSymbol = Symbol('expectSymbol'); /** * @internal */ const expectAny = Symbol('expectAny'); /** * @internal */ const expectUnknown = Symbol('expectUnknown'); /** * @internal */ const expectNever = Symbol('expectNever'); /** * @internal */ const expectNullable = Symbol('expectNullable'); /** * @internal */ const expectBigInt = Symbol('expectBigInt');