API reference › @evolu/common › Type › ArrayNotArrayError
Defined in: packages/common/src/Type.ts:8963
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:8964
| Name | Type | Defined in |
|---|---|---|
kind | "NotArray" | packages/common/src/Type.ts:8965 |
value | unknown | packages/common/src/Type.ts:8966 |
type
readonly type: "Array";
Defined in: packages/common/src/Type.ts:893