Hoshimi
NPM
GuideAPI
Hoshimi
NPM
Guide
API

PickNullable

Make a type nullable.

API/Type Aliases/PickNullable
hoshimi/src/types/Manager.d.ts

Signature

type PickNullable<T, K extends keyof T> = {    [P in K]: T[P] | null;} & Omit<T, K>;

Members

This export does not declare public properties or methods in the generated declaration file.