We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dca801e commit 068d894Copy full SHA for 068d894
1 file changed
src/processors/obfProcessor.ts
@@ -52,22 +52,15 @@ interface ObfButton {
52
}
53
54
interface ObfManifest {
55
+ format?: string;
56
root?: string;
57
paths?: {
58
boards?: { [key: string]: string };
- images?: { [key: string]: string | ObfImage };
59
+ images?: { [key: string]: string };
60
sounds?: { [key: string]: string };
61
};
62
63
-interface ObfImage {
64
- id: number;
65
- path: string;
66
- width: number;
67
- height: number;
68
- content_type: string;
69
-}
70
-
71
/**
72
* Map OBF hidden value to AAC standard visibility
73
* OBF: true = hidden, false/undefined = visible
0 commit comments