import { TMap } from "@effect/core/stm/TMap/definition"; import { STM } from "@effect/core/stm/STM/definition/base"; import { List } from "@tsplus/stdlib/collections/List/definition"; /** * Atomically updates all bindings using a pure function. * @tsplus static effect/core/stm/TMap.Aspects transform * @tsplus pipeable effect/core/stm/TMap transform * @tsplus location "@effect/core/stm/TMap/operations/transform" */ export declare function transform(f: (kv: readonly [K, V]) => readonly [K, V]): (self: TMap) => STM; //# sourceMappingURL=transform.d.ts.map