source:
node_modules/ts-toolbelt/out/Union/Nullable.d.ts
| Last change on this file was d24f17c, checked in by , 20 months ago | |
|---|---|
|
|
| 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 | */ |
| 9 | export declare type Nullable<U extends any> = U | undefined | null; |
Note:
See TracBrowser
for help on using the repository browser.
