mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-28 12:36:35 +00:00
22 lines
No EOL
331 B
TypeScript
22 lines
No EOL
331 B
TypeScript
type Skin = {
|
|
url: string, name: string
|
|
}
|
|
|
|
export type Action = {
|
|
type: "NETWORK_CONNECTED"
|
|
} | {
|
|
type: "NETWORK_DISCONNECTED"
|
|
} | {
|
|
type: "SET_AVAILABLE_SKINS"
|
|
skins: Array<Skin>
|
|
}
|
|
|
|
|
|
export interface SettingsState {
|
|
availableSkins: Array<Skin>;
|
|
}
|
|
|
|
|
|
export interface NetworkState {
|
|
connected: boolean;
|
|
} |