API reference › @evolu/common › Type › TupleInvalidLengthError
Defined in: packages/common/src/Type.ts:9126
An error returned when a tuple input has the wrong length.
Extends
TypeError<"Tuple">
Properties
reason
readonly reason: {
actual: number;
expected: number;
kind: "InvalidLength";
};
Defined in: packages/common/src/Type.ts:9127
| Name | Type | Defined in |
|---|---|---|
actual | number | packages/common/src/Type.ts:9130 |
expected | number | packages/common/src/Type.ts:9129 |
kind | "InvalidLength" | packages/common/src/Type.ts:9128 |
type
readonly type: "Tuple";
Defined in: packages/common/src/Type.ts:870