@hmcts/rpx-xui-node-lib
Version:
Common nodejs library components for XUI
10 lines • 312 B
TypeScript
/**
* Sort the array alphabetically
*
* We clone the original array, so that we avoid mutation.
*
* @param array - an array of strings that are required to be sorted alphabetically
* @return string[]
*/
export declare const sortArray: (array: string[]) => string[];
//# sourceMappingURL=sortArray.d.ts.map