diff options
Diffstat (limited to 'cli/tsc/dts')
-rw-r--r-- | cli/tsc/dts/lib.deno.unstable.d.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/tsc/dts/lib.deno.unstable.d.ts b/cli/tsc/dts/lib.deno.unstable.d.ts index 4bc0fed45..9c4bd5d2c 100644 --- a/cli/tsc/dts/lib.deno.unstable.d.ts +++ b/cli/tsc/dts/lib.deno.unstable.d.ts @@ -1840,6 +1840,10 @@ declare namespace Deno { */ 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. */ |