API reference › @evolu/common › Type › ArrayNotArrayError
Defined in: packages/common/src/Type.ts:7605
Error returned when an array input is not an array.
Extends
TypeError<"Array">
Properties
reason
readonly reason: {
kind: "NotArray";
value: unknown;
};
Defined in: packages/common/src/Type.ts:7606
| Name | Type | Defined in |
|---|---|---|
kind | "NotArray" | packages/common/src/Type.ts:7607 |
value | unknown | packages/common/src/Type.ts:7608 |
type
readonly type: "Array";
Defined in: packages/common/src/Type.ts:870