Alchemy Logo

IsUndefined

type IsUndefined<T> = [undefined] extends [T] ? true : false;

Defined in: aa-sdk/core/src/utils/types.ts:20

type Result = IsUndefined<undefined>;
//   ^? type Result = true

Type ParameterDescription

T

Type to check

Was this page helpful?