mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 01:29:22 +00:00
Built interfaces not classes
This commit is contained in:
parent
0a342f2cd1
commit
4e4fb72949
1 changed files with 3 additions and 3 deletions
|
|
@ -7,12 +7,12 @@ const BASE_OBJECT = "@{00000000-0000-0000-0000-000000000000}@";
|
|||
function mapType(makiType) {
|
||||
switch (makiType) {
|
||||
case "Object":
|
||||
return "MakiObject";
|
||||
return "IMakiObject";
|
||||
case "Map":
|
||||
return "MakiMap";
|
||||
return "IMakiMap";
|
||||
}
|
||||
if (makiObjectNames.has(makiType)) {
|
||||
return makiType;
|
||||
return `I${makiType}`;
|
||||
}
|
||||
|
||||
const lowerCaseType = makiType.toLowerCase();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue