UNPKG

sound-manager

Version:
14 lines (12 loc) 283 B
import { IFade, } from '../Fade/IFade'; import { ISoundGroupIdentifier, } from '../interfaces/ISoundGroupIdentifier'; export interface IPlaylistOptions { ids: Array<ISoundGroupIdentifier | string>; callback?(): any; fade?: IFade; loop?: boolean | number; }