types-echo
v0.2.0
Published
typescript echo
Downloads
4
Readme
Types Echo
A Typescript library for creating and managing custom types.
Installation
npm install types-echo
Usage
import type { Nullable } from 'types-echo';
const value: Nullable<string> = null;
Types
Nullable
import type { Nullable } from 'types-echo';
const value: Nullable<string> = null;
Undefinable
import type { Undefinable } from 'types-echo';
const value: Undefinable<string> = undefined;