Skip to content

Commit 068d894

Browse files
committed
Added format, removed ObfImage from types
1 parent dca801e commit 068d894

1 file changed

Lines changed: 2 additions & 9 deletions

File tree

src/processors/obfProcessor.ts

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -52,22 +52,15 @@ interface ObfButton {
5252
}
5353

5454
interface ObfManifest {
55+
format?: string;
5556
root?: string;
5657
paths?: {
5758
boards?: { [key: string]: string };
58-
images?: { [key: string]: string | ObfImage };
59+
images?: { [key: string]: string };
5960
sounds?: { [key: string]: string };
6061
};
6162
}
6263

63-
interface ObfImage {
64-
id: number;
65-
path: string;
66-
width: number;
67-
height: number;
68-
content_type: string;
69-
}
70-
7164
/**
7265
* Map OBF hidden value to AAC standard visibility
7366
* OBF: true = hidden, false/undefined = visible

0 commit comments

Comments
 (0)