UNPKG

@byomakase/omakase-player

Version:

## Omakase Player - Open source JavaScript framework for building frame accurate video experiences

12 lines (11 loc) 491 B
import { Video } from './video'; export declare class Validators { static id(): (value: string) => string; static description(): (value: string) => string; static boolean(): (value: boolean) => boolean; static url(): (value: string) => string; static videoTime(): (value: number) => number; static videoTimecode(): (value: string, video: Video) => string; static audioChannelsNumber(): (value: number) => number; static volume(): (value: number) => number; }