Skip to content

LeDDGroup/typescript-conditional-types

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

typescript-conditional-types

npm version Conventional Commits code style: prettier

Helpers for typescript generic types

Table of Contents

Motivation

Creating complex types with conditional types ( T extends U ? X : Y ) could be a little verbose. This package aims to simplify code and make it more readable.

Install

$ npm install typescript-conditional-types

You'll probably want to save it in the devDependencies

Type Helper List

  • If<Condition, Then, Else>: If Condition is true resulting type is Then else Else
  • And<A, B>: true if A and B are both true else false
  • Or<A, B>: true if A or B are true else false
  • Not: Negate A
  • Extends<A, B>: true if A extends B like in A extends B ? true : false
  • Extends<A, B, Then, Else: Equivalent to If<Extends<A, B>, Then, Else>

Usage Example

import { If } from "typescript-conditional-types";

type BooleanToString<T extends boolean> = If<T, "true", "false">

BooleanToString<true> // "true"
BooleanToString<false> // "false"

About

Helpers for typescript generic types

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •  
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy