@frauschert/ts-guard
Version:
ts-guard is a typescript library that provides composable type guards. Its inspired by zod but focusses only on type guards and is more lightweight.
8 lines • 381 B
TypeScript
export { isBigInt } from './isBigInt/isBigInt';
export { isBoolean } from './isBoolean/isBoolean';
export { isNumber } from './isNumber/isNumber';
export { isString } from './isString/isString';
export { isSymbol } from './isSymbol/isSymbol';
export { isNull } from './isNull/isNull';
export { isUndefined } from './isUndefined/isUndefined';
//# sourceMappingURL=primitive.d.ts.map