mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-21 09:09:01 +00:00
Fix types for Config
This commit is contained in:
parent
9860da6570
commit
ef856bb617
2 changed files with 6 additions and 1 deletions
|
|
@ -15,6 +15,9 @@ class Config extends MakiObject {
|
|||
|
||||
newitem(item_name: string, item_guid: string) {
|
||||
unimplementedWarning("newitem");
|
||||
// @ts-ignore Currently ConfigItem has no XMLNode which is busted, but
|
||||
// should change once we get better machanisms for adding children to a
|
||||
// mutable XML state tree.
|
||||
return new ConfigItem(null, this);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -22,7 +22,9 @@
|
|||
"modern/src/runtime/GuiObject.ts",
|
||||
"modern/src/runtime/Layout.ts",
|
||||
"modern/src/runtime/Group.ts",
|
||||
"modern/src/runtime/Timer.ts"
|
||||
"modern/src/runtime/Timer.ts",
|
||||
"modern/src/runtime/Config.ts",
|
||||
"modern/src/runtime/ConfigItem.ts"
|
||||
],
|
||||
"exclude": ["node_modules", "**/*.spec.ts", "demo/built"]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue