Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mscharley/generic-type-guard

Type safe, composable type guards for TypeScript
https://github.com/mscharley/generic-type-guard

input-validation type-guards type-safety typescript

Last synced: 1 day ago
JSON representation

Type safe, composable type guards for TypeScript

Awesome Lists containing this project

README

        

# generic-type-guard

[![npm](https://img.shields.io/npm/v/generic-type-guard.svg)](https://www.npmjs.com/package/generic-type-guard)

## Synopsis

This library is an attempt to manage creating type guards in a sensible way, making them
composable and reusable.

## Installation

$ npm i generic-type-guard

## Usage

The point of this library is to provide a suite of type guard expressions that are
themselves both type safe and composable in a type safe way. To that end we define two new
types which are just aliases for the built-in type guard type:

```typescript
export type PartialTypeGuard = (value: T) => value is U;
export type TypeGuard = PartialTypeGuard;
```

A `PartialTypeGuard` is a type guard which given a value of type `T` can prove it is
actually the specialised type `U`. A `TypeGuard` is a type guard that can prove any value
to be of type `T`; it is a `PartialTypeGuard`.

### Type safety

What do we mean by type safety when we're talking about something that in a lot of ways
is inherantly type unsafe? We simply mean that if you change the definition your
interface/variable/whatever you are checking then your type guard should no longer
successfully compile. Most of the type safety comes from leveraging the compiler, therefore
you must define your typeguards in the following way to make them the most effective:

```typescript
interface Foo {
foo: string;
bar: number;
}

// this fails.
const isBrokenFoo: tg.TypeGuard = tg.isRecord('foo', tg.isString);

// this works.
const isFoo: tg.TypeGuard = new tg.IsInterface()
.withProperty('foo', tg.isString)
.withProperty('bar', tg.isNumber)
.get();

// This works around the gotchas explained below but has other issues, especially with complex types.
// All guarantees are void if you use this format.
const isFoo = new tg.IsInterface().withProperty('foo', tg.isString).withProperty('bar', tg.isNumber).get();
```

It is highly recommended to assign an explicit type to the type guards you create to let the
compiler ensure that you've caught everything.

### Examples

Some examples:

```typescript
import * as tg from 'generic-type-guard';

export const isComplexInterface = new tg.IsInterface()
.withProperties({
str: tg.isString,
num: tg.isNumber,
b: tg.isBoolean,
maybeString: tg.isOptional(tg.isString),
nullableString: tg.isNullable(tg.isString),
})
.get();
export type ComplexInterface = tg.GuardedType;
```

[There are more detailed examples available.][example-usage]

### Gotchas

#### TypeScript structural typing

`generic-type-guard` works with the TypeScript type system. You are guaranteed that the type guards you write are _sufficient_ to prove
that the thing provided to it conforms in one way or another to the type that the type guard checks for. But that doesn't necessarily mean
that all valid values of that type will be allowed. Put another way, you are guaranteed to never get a false positive but you may get false
negatives. In particular, union types can be troublesome.

An example helps illustrate this:

```typescript
import * as tg from 'generic-type-guard';

type FooBar = 'foo' | 'bar';

const isFooBar: tg.TypeGuard = tg.isSingletonString('foo');
```

The above example checks for a single value `"foo"`. This _is_ a FooBar and so the type system does not complain. But if you try to pass
`"bar"` into this type guard then it will return false.

Perhaps more insidiously:

```typescript
interface Foo {
foo?: string;
}

const isFoo: tg.TypeGuard = tg.isRecord('foo', tg.isString);
```

Again, checking that `foo` is a string is sufficient to prove that it is either a string or undefined.

##### Fix for structural typing issues

If possible, you should reframe the question. Instead of creating a type to guard against, create a guard and export the type:

```typescript
const isFoo = tg.isRecord('foo', tg.isOptional(tg.isString));
type Foo = tg.GuardedType;
```

[gh-contrib]: https://github.com/mscharley/generic-type-guard/graphs/contributors
[gh-issues]: https://github.com/mscharley/generic-type-guard/issues
[license]: https://github.com/mscharley/generic-type-guard/blob/master/LICENSE
[example-usage]: https://github.com/mscharley/generic-type-guard/blob/main/src/__tests__/examples.ts