UNPKG

@svta/common-media-library

Version:
23 lines 493 B
/** * Create a generic WebVttRegion object with default values * that match the DOM VTTRegion interface. * * @returns A WebVttRegion object with default values * * @group WebVTT * * @beta */ export function createWebVttRegion() { return { id: '', width: 100, lines: 3, regionAnchorX: 0, regionAnchorY: 100, viewportAnchorX: 0, viewportAnchorY: 100, scroll: '', }; } //# sourceMappingURL=createWebVttRegion.js.map