UNPKG

@exezt-/webamp-custom

Version:

Winamp 2 implemented in HTML5 and JavaScript

7 lines (6 loc) 227 B
import { Action, Skin } from "../types"; export interface SettingsState { availableSkins: Array<Skin>; } declare const settings: (state: SettingsState | undefined, action: Action) => SettingsState; export default settings;