the browser-facing portion of osu!
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
2// See the LICENCE file in the repository root for full licence text.
3
4interface SliderUIParams {
5 handle?: JQuery | undefined;
6 value?: number | undefined;
7 values?: number[] | undefined;
8}