API reference › @evolu/common › Type › ArrayNotArrayError
Defined in: packages/common/src/Type.ts:7599
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:7600
| Name | Type | Defined in |
|---|---|---|
kind | "NotArray" | packages/common/src/Type.ts:7601 |
value | unknown | packages/common/src/Type.ts:7602 |
type
readonly type: "Array";
Defined in: packages/common/src/Type.ts:870