mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 09:37:17 +00:00
Add missing type annotation
This commit is contained in:
parent
ace4669f89
commit
2a25f190a5
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue