mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 10:15:31 +00:00
Ignore typescript
This commit is contained in:
parent
636fd4caaf
commit
db8212f7a8
1 changed files with 2 additions and 0 deletions
|
|
@ -122,6 +122,7 @@ class System extends MakiObject {
|
|||
getprivateint(section: string, item: string, defvalue: number): number {
|
||||
if (
|
||||
!this._privateInt.has(section) ||
|
||||
// @ts-ignore We know this section exists
|
||||
!this._privateInt.get(section).has(item)
|
||||
) {
|
||||
return defvalue;
|
||||
|
|
@ -636,6 +637,7 @@ class System extends MakiObject {
|
|||
getprivatestring(section: string, item: string, defvalue: string): string {
|
||||
if (
|
||||
!this._privateString.has(section) ||
|
||||
// @ts-ignore We know this section exists
|
||||
!this._privateString.get(section).has(item)
|
||||
) {
|
||||
return defvalue;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue