source: node_modules/ts-toolbelt/out/Union/Nullable.d.ts

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 188 bytes
Line 
1/**
2 * Add `undefined | null` to `U`
3 * @param U to make nullable
4 * @returns [[Union]]
5 * @example
6 * ```ts
7 * ```
8 */
9export declare type Nullable<U extends any> = U | undefined | null;
Note: See TracBrowser for help on using the repository browser.