diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index db59980ec0..763393e504 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; }