utilies-ts
v1.0.2
Published
TypeScript utility package for type definitions and more.
Downloads
12
Readme
Typescript Utils
To install the package use:
npm install utilies-tsExample TypeScript Code:
import { Union, printType } from 'utilies-ts';
let unionType: Union<string, number> = 42;
unionType = "Hello World";
printType(unionType);