From 9ee1d80490b60b48aff97b7b5ebe0214da9bbf63 Mon Sep 17 00:00:00 2001 From: Andy Date: Wed, 19 Apr 2017 10:09:54 -0700 Subject: [PATCH] Mithril: fix new excess property check (#15985) --- types/mithril/test/test-api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/mithril/test/test-api.ts b/types/mithril/test/test-api.ts index f042baaaa6..2aebecb87e 100644 --- a/types/mithril/test/test-api.ts +++ b/types/mithril/test/test-api.ts @@ -116,7 +116,7 @@ const FRAME_BUDGET = 100; { // define a component - const Greeter: m.Comp<{}, {}> = { + const Greeter: m.Comp<{ style: string }, {}> = { view(vnode) { return m("div", vnode.attrs, ["Hello ", vnode.children]); }