API reference › @evolu/common › Type › MapValueIssue
type MapValueIssue<Error> = Error extends TypeError
? {
error: Error;
index: number;
key: unknown;
kind: "Value";
}
: never;
Defined in: packages/common/src/Type.ts:8635
An invalid value and its entry index in a map.