mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-23 18:17:38 +00:00
18 lines
427 B
JavaScript
18 lines
427 B
JavaScript
import { CLOSE_WINAMP, STOP, TOGGLE_VISUALIZER_STYLE } from "../actionTypes";
|
|
|
|
export * from "./windows";
|
|
export * from "./media";
|
|
export * from "./equalizer";
|
|
export * from "./files";
|
|
export * from "./playlist";
|
|
|
|
export function close() {
|
|
return dispatch => {
|
|
dispatch({ type: STOP });
|
|
dispatch({ type: CLOSE_WINAMP });
|
|
};
|
|
}
|
|
|
|
export function toggleVisualizerStyle() {
|
|
return { type: TOGGLE_VISUALIZER_STYLE };
|
|
}
|