type-optional
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

type-optional

The bare minimum for an optional type in TypeScript. This is just a type nothing more and nothing less.

Usage

Use the type as followed:

import { Optional, OptionalPromise } from "type-optional";
// Use OptionalPromise for async functions

function test(): Optional<string> {
    return "test";
}

function otherTest(test: string) {
    // something
}

otherTest(test()); // Argument of type 'Optional<string>' is not assignable to parameter of type 'string'. Type 'undefined' is not assignable to type 'string'

Todo

  • Include some utility functions?

Package Sidebar

Install

npm i type-optional

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

4.47 kB

Total Files

7

Last publish

Collaborators

  • sirmomster