From 967eef771badf87f5e77b3be11869182c3773f9b Mon Sep 17 00:00:00 2001 From: Matt Bierner Date: Thu, 3 Jan 2019 16:18:37 -0800 Subject: [PATCH] Also update monaco d.ts recipe for requiring explicit argument for `fire` --- build/monaco/monaco.d.ts.recipe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/monaco/monaco.d.ts.recipe b/build/monaco/monaco.d.ts.recipe index 71df853a678..ed3a8f5d260 100644 --- a/build/monaco/monaco.d.ts.recipe +++ b/build/monaco/monaco.d.ts.recipe @@ -21,7 +21,7 @@ declare namespace monaco { export class Emitter { constructor(); readonly event: Event; - fire(event?: T): void; + fire(event: T): void; dispose(): void; }