API reference › @evolu/common › Type › TupleInvalidLengthError
Defined in: packages/common/src/Type.ts:9120
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:9121
| Name | Type | Defined in |
|---|---|---|
actual | number | packages/common/src/Type.ts:9124 |
expected | number | packages/common/src/Type.ts:9123 |
kind | "InvalidLength" | packages/common/src/Type.ts:9122 |
type
readonly type: "Tuple";
Defined in: packages/common/src/Type.ts:870