HashMapIso<Key, Value>Iso representation used for HashMap schemas: an array of readonly
[key, value] tuples using each entry schema's Iso type.
HashMap
Source effect/Schema.ts:99083 lines
export type type HashMapIso<
Key extends Constraint,
Value extends Constraint
> = readonly (readonly [
Key["Iso"],
Value["Iso"]
])[]
Iso representation used for HashMap schemas: an array of readonly
[key, value] tuples using each entry schema's Iso type.
HashMapIso<function (type parameter) Key in type HashMapIso<Key extends Constraint, Value extends Constraint>Key extends Constraint, function (type parameter) Value in type HashMapIso<Key extends Constraint, Value extends Constraint>Value extends Constraint> = interface ReadonlyArray<T>ReadonlyArray<
readonly [function (type parameter) Key in type HashMapIso<Key extends Constraint, Value extends Constraint>Key["Iso"], function (type parameter) Value in type HashMapIso<Key extends Constraint, Value extends Constraint>Value["Iso"]]
>Referenced by 1 symbols