summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cli/dts/lib.deno.unstable.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts
index db59980ec..763393e50 100644
--- a/cli/dts/lib.deno.unstable.d.ts
+++ b/cli/dts/lib.deno.unstable.d.ts
@@ -121,7 +121,7 @@ declare namespace Deno {
/** A foreign function as defined by its parameter and result types */
export interface ForeignFunction {
- parameters: NativeType[];
+ parameters: (NativeType | "buffer")[];
result: NativeType;
}