UNPKG

@nnc-digital/nnc-design-system

Version:

Design system for West & North Northamptonshire Councils, two unitary councils encompassing Wellingborough, Corby, Daventry, East Northants, Kettering, Northampton, Northamptonshire County and South Northants.

23 lines (22 loc) 462 B
export interface VideoProps { /** * The unique video id */ video_id: string; /** * The video streaming provider */ provider: VideoProvider; /** * The description link text displayed when cookies are disabled */ description: string; /** * Allow overriding if cookies are allowed */ allowCookies?: boolean; } export declare enum VideoProvider { YouTube = "YouTube", Vimeo = "Vimeo" }