import { DeepKey } from "@stryke/types/object"; //#region src/set-field.d.ts /** * Sets a value at a given deep path in an object. * * @param object - The object to set the value in. * @param path - The deep path to set the value at. * @param value - The value to set. * @returns The object with the value set at the given deep path. */ declare function setField = Record>(object: TObject, path: DeepKey, value: unknown): TObject; //#endregion export { setField }; //# sourceMappingURL=set-field.d.mts.map