@exezt-/webamp-custom
Version:
Winamp 2 implemented in HTML5 and JavaScript
10 lines (9 loc) • 325 B
TypeScript
import { Action, Slider } from "../types";
export interface UserInputState {
focus: string | null;
bandFocused: Slider | null;
scrubPosition: number;
userMessage: string | null;
}
export declare const userInput: (state: UserInputState | undefined, action: Action) => UserInputState;
export default userInput;