mirror of
https://github.com/denoland/deno.git
synced 2025-08-03 10:33:54 +00:00
feat(kv): AtomicOperation#sum (#18704)
This commit is contained in:
parent
1bca994143
commit
2184103a5e
2 changed files with 12 additions and 0 deletions
4
cli/tsc/dts/lib.deno.unstable.d.ts
vendored
4
cli/tsc/dts/lib.deno.unstable.d.ts
vendored
|
@ -1839,6 +1839,10 @@ declare namespace Deno {
|
|||
* for {@linkcode Deno.KvMutation}.
|
||||
*/
|
||||
mutate(...mutations: KvMutation[]): this;
|
||||
/**
|
||||
* Shortcut for creating a sum mutation.
|
||||
*/
|
||||
sum(key: KvKey, n: bigint): this;
|
||||
/**
|
||||
* Add to the operation a mutation that sets the value of the specified key
|
||||
* to the specified value if all checks pass during the commit.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue