@augment-vir/common
Version:
A collection of augments, helpers types, functions, and classes for any JavaScript environment.
10 lines (9 loc) • 377 B
TypeScript
import { type AnyObject } from '@augment-vir/core';
/**
* Creates as new sorted object copied from the the original given object.
*
* @category Object
* @category Package : @augment-vir/common
* @package [`@augment-vir/common`](https://www.npmjs.com/package/@augment-vir/common)
*/
export declare function sortObject<const T extends AnyObject>(original: Readonly<T>): T;