UNPKG

webamp

Version:

Winamp 2 implemented in HTML5 and JavaScript

7 lines (6 loc) 207 B
import { Action } from "../types"; export interface NetworkState { connected: boolean; } declare const network: (state: NetworkState | undefined, action: Action) => NetworkState; export default network;