//#region src/identity.d.ts /** * Returns the input value unchanged. * * @example * ```ts * identity(5); // Returns 5 * identity('hello'); // Returns 'hello' * identity({ key: 'value' }); // Returns { key: 'value' } * ``` * * @param x - The value to be returned. * @returns The input value. */ declare function identity(x: T): T; //#endregion export { identity }; //# sourceMappingURL=identity.d.cts.map