* feat: make music lable more dynamically configurable * fix: move seekbar above controls * fix: add menu for media * fix: add menu for media * fix: add menu for media * Organize media player code * fix: revert back controls position * Delete pnpm-lock.yaml * Update options.ts * Update widget/settings/pages/config/bar/index.ts * fix: merge changes broken --------- Co-authored-by: Jas Singh <jaskiratpal.singh@outlook.com>
15 lines
503 B
TypeScript
15 lines
503 B
TypeScript
export type InputDevices = Button<Box<Box<Label<Attribute>, Attribute>, Attribute>, Attribute>[];
|
|
|
|
type DummyDevices = Button<Box<Box<Label<Attribute>, Attribute>, Attribute>, Attribute>[];
|
|
type RealPlaybackDevices = Button<Box<Box<Label<Attribute>, Attribute>, Attribute>, Attribute>[];
|
|
export type PlaybackDevices = DummyDevices | RealPlaybackDevices;
|
|
|
|
export type MediaTags = {
|
|
title: string;
|
|
artists: string;
|
|
artist: string;
|
|
album: string;
|
|
name: string;
|
|
identity: string;
|
|
};
|