API > wxt/storage > NullablePartial
Type alias: NullablePartial<T>
NullablePartial<
T
>:{ [key in keyof T]?: T[key] | null }
Same as Partial
, but includes | null
. It makes all the properties of an object optional and nullable.
Type parameters
Parameter |
---|
T |
Source
packages/wxt/src/storage.ts:702
Generated using typedoc-plugin-markdown and TypeDoc