Giter Club home page Giter Club logo

ts-nice's Introduction

ts-nice

CircleCI

Some types that make your life easier when using typescript.

There are three interfaces that allow you to do the following things:

  • Select specific properties from a type (Select).
  • Make all properties of a type optional (Optional).
  • Set all properties of a type to a specific type (SetAll).

Select

Allows you to select specific properties from an interface / type.

import { Select } from 'ts-nice'

interface Example {
	a: number
	b: string
}

// Select only the key 'a'.
let result: Select<Example, 'a'>

result = { a: 54 } // valid
result = { a: 'asdf' } // invalid
result = { b: 'hi' } // invalid
result = {} // invalid

You can also select multiple properties:

interface Example {
	a: number
	b: string
	c: boolean
}

// Select the key 'a' and 'b'.
let result = Select<Example, 'a' | 'b'>

Optional

Allows you to make all properties of an interface / type optional.

import { Optional } from 'ts-nice'

interface Example { a: number, b: string }

// Make all properties optional.
let result: Optional<Example>

result = {} // valid
result = { a: 45 } // valid
result = { a: 45, b: 'huhn' } // valid
result = { a: true } // invalid
result = { c: 'asdf' } // invalid

SetAll

Allows you to set all properties of an interface to a specific type.

import { SetAll } from 'ts-nice'

interface Example { a: number, b: string }

// Change the type of all properties to boolean.
let result: SetAll<Example, boolean>

result = { a: true, b: false } // valid
result = { a: 45, b: 'hi' } // invalid
result = { a: true } // invalid

ts-nice's People

Contributors

robojones avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.