Ignore typescript

This commit is contained in:
Jordan Eldredge 2019-10-17 23:07:29 -07:00
parent 636fd4caaf
commit db8212f7a8

View file

@ -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;