UNPKG

@ormoshe/js-video-url-parser

Version:

A parser to extract provider, video id, starttime and others from YouTube, Vimeo, ... urls

15 lines (10 loc) 400 B
import { VideoInfo } from '../urlParser'; export interface BigcommandeUrlParameters { [key: string]: any; } export type BigcommandeMediaTypes = 'video'; export interface BigcommandeVideoInfo extends VideoInfo<BigcommandeUrlParameters, BigcommandeMediaTypes> { provider: 'bigcommande'; channel: string; } export type VoomlyParseResult = BigcommandeVideoInfo | undefined;