mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 17:47:16 +00:00
Make skin data a bit more correct
This commit is contained in:
parent
9b5c3dc579
commit
ea48bc7441
1 changed files with 6 additions and 3 deletions
|
|
@ -12,10 +12,10 @@ type Band = null; // TODO: Use a real type here.
|
|||
// TODO: Fill these out once we actually use them.
|
||||
type SkinData = {
|
||||
skinImages: SkinImages;
|
||||
skinColors: null;
|
||||
skinColors: string[];
|
||||
skinPlaylistStyle: null;
|
||||
skinCursors: null;
|
||||
skinRegion: null;
|
||||
skinRegion: {};
|
||||
skinGenLetterWidths: null;
|
||||
}
|
||||
|
||||
|
|
@ -162,7 +162,10 @@ export interface DisplayState {
|
|||
disableMarquee: boolean;
|
||||
marqueeStep: number;
|
||||
skinImages: SkinImages;
|
||||
skinColors: null;
|
||||
skinCursors: null;
|
||||
skinRegion: {};
|
||||
skinGenLetterWidths: null;
|
||||
skinColors: string[]; // Theoretically this could be a tuple of a specific length
|
||||
skinPlaylistStyle: null;
|
||||
working: boolean;
|
||||
closed: boolean;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue