Advanced / Store Advanced

isWrappable

isWrappable API reference.


Import

import { isWrappable } from "solid-js";

Type signature

function isWrappable<T>(obj: T | NotWrappable): obj is T;

NotWrappable

type NotWrappable =
| string
| number
| bigint
| symbol
| boolean
| Function
| null
| undefined
| SolidStore.Unwrappable[keyof SolidStore.Unwrappable];
Last updated: 7/4/26, 6:21 PMEdit this pageReport an issue with this page