Package: effect
Module: Struct
This function creates and returns a new Order for a struct of values based on the given Orders
for each property in the struct.
Alias of order.struct.
Signature
declare const getOrder: <R extends { readonly [x: string]: order.Order<any>; }>(fields: R) => order.Order<{ [K in keyof R]: [R[K]] extends [order.Order<infer A>] ? A : never; }>
Since v2.0.0