Add some new cases to fix lint

This commit is contained in:
Jordan Eldredge 2022-03-24 22:09:33 -07:00
parent b0e24fb8a3
commit 904ae264ac
2 changed files with 5 additions and 1 deletions

File diff suppressed because one or more lines are too long

View file

@ -152,6 +152,10 @@ function makiTypeToTsType(makiType: string): string {
return "Wac";
case "configitem":
return "ConfigItem";
case "configattribute":
return "ConfigAttribute"
case "winampconfiggroup":
return "WinampConfigGroup"
default:
throw new Error(`Missing maki type: ${makiType}`);
}