summaryrefslogtreecommitdiff
path: root/cli/tsc
diff options
context:
space:
mode:
authorDivy Srivastava <dj.srivastava23@gmail.com>2024-06-30 21:06:33 -0700
committerGitHub <noreply@github.com>2024-07-01 09:36:33 +0530
commitcd4a0072dc3a9c8783e0a864af9bd428552c2407 (patch)
treeda71f2e1ce47f82c44c5f6bad1b57ca2c101b2e3 /cli/tsc
parentbc8a0e6e68547cf07a246b8b6c886de155dc8282 (diff)
BREAKING(unstable/ffi): remove callback reentrant flag (#24367)
Closes https://github.com/denoland/deno/issues/22947 This option is no longer needed as fast calls are now allowed to re-enter the isolate
Diffstat (limited to 'cli/tsc')
-rw-r--r--cli/tsc/dts/lib.deno.unstable.d.ts5
1 files changed, 0 insertions, 5 deletions
diff --git a/cli/tsc/dts/lib.deno.unstable.d.ts b/cli/tsc/dts/lib.deno.unstable.d.ts
index 4a92f6872..f444336bf 100644
--- a/cli/tsc/dts/lib.deno.unstable.d.ts
+++ b/cli/tsc/dts/lib.deno.unstable.d.ts
@@ -371,11 +371,6 @@ declare namespace Deno {
/** When `true`, function calls will run on a dedicated blocking thread and
* will return a `Promise` resolving to the `result`. */
nonblocking?: NonBlocking;
- /** When `true`, function calls can safely callback into JavaScript or
- * trigger a garbage collection event.
- *
- * @default {false} */
- callback?: boolean;
/** When `true`, dlopen will not fail if the symbol is not found.
* Instead, the symbol will be set to `null`.
*