Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/gunar/ts-with

Enforce the presence of otherwise optional fields in TypeScript.
https://github.com/gunar/ts-with

Last synced: 6 days ago
JSON representation

Enforce the presence of otherwise optional fields in TypeScript.

Awesome Lists containing this project

README

        

# Installation
```
npm install --save @gunar/ts-with
```

# Summary
This package contains type maps for enforcing the presence of otherwise optional fields.

See the [blog post](https://medium.com/@gunar/narrower-optional-fields-for-typescript-49fd68335601) for more context.

## Example

```ts
interface User {
name: string
location?: string
}

// This passes type check but shouldn't ---------------------
const getTrimmedLocation = (u: User) => {
if (u.location) return u.location.trim()
else throw Error('User doesnt have a `location` field')
}

getTrimmedLocation({ name: 'Gunar' })

// This DOESN'T pass type check, as expected! ---------------
import { With } from '@gunar/ts-with'

const getTrimmedLocationSafe: (u: With) =>
u.location.trim()

getTrimmedLocationSafe({ user: 'Gunar' })
```