//#region src/object/invert.d.ts /** * Creates an object composed of the inverted keys and values of object * @param obj - The object to invert * @returns Returns the new inverted object * @example * invert({ a: 1, b: 2, c: 1 }); // { '1': 'c', '2': 'b' } */ declare function invert>(obj: T): Record; //#endregion export { invert }; //# sourceMappingURL=invert.d.mts.map