UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

5 lines (4 loc) 183 B
/** * Make a sorting comparator that will sort by a given sort key */ export declare function sortKeyComparator<A>(keyFn: (x: A) => Array<string | number>): (a: A, b: A) => number;