mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 09:37:17 +00:00
Use type not interface
This commit is contained in:
parent
961f204496
commit
cad005e175
1 changed files with 2 additions and 2 deletions
|
|
@ -89,7 +89,7 @@ export type SkinImages = { [sprite: string]: string };
|
|||
// TODO: type these keys
|
||||
export type SkinRegion = { [windowName: string]: string[] };
|
||||
|
||||
export interface DummyVizData {
|
||||
export type DummyVizData = {
|
||||
0: 11.75;
|
||||
8: 11.0625;
|
||||
16: 8.5;
|
||||
|
|
@ -106,7 +106,7 @@ export interface DummyVizData {
|
|||
104: 4.375;
|
||||
112: 3.625;
|
||||
120: 1.5625;
|
||||
}
|
||||
};
|
||||
|
||||
export interface SkinGenExColors {
|
||||
itemBackground: string;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue