UNPKG

@pubby.club/sdk

Version:
15 lines (14 loc) 328 B
import { DeepPartial } from "../lib/types"; export declare enum PlaybackState { NONE = 0, PLAYING = 1, PAUSED = 2 } export declare class PlaybackModel { djId: string; media: any; state: PlaybackState; currentTime: number; timestamp: number; constructor(values: DeepPartial<PlaybackModel>); }