Add missing type annotation

This commit is contained in:
Jordan Eldredge 2019-09-28 17:00:07 -07:00
parent ace4669f89
commit 2a25f190a5

View file

@ -1,4 +1,5 @@
import MakiObject from "./MakiObject";
import GuiObject from "./GuiObject";
import { findDescendantByTypeAndId, unimplementedWarning } from "../utils";
import { XmlNode } from "../types";
import Layout from "./Layout";
@ -110,7 +111,7 @@ class Container extends MakiObject {
return;
}
onaddcontent(wnd, id: string, guid: string) {
onaddcontent(wnd: GuiObject, id: string, guid: string) {
unimplementedWarning("onaddcontent");
return;
}