UNPKG

@checksub_team/peaks_timeline

Version:

JavaScript UI component for displaying audio waveforms

69 lines (66 loc) 1.17 kB
/** * @file * * Defines the reserved Source option keys. * * @module source-keys */ define(function() { 'use strict'; return new Set([ 'id', 'lineId', 'originId', 'elementId', 'title', 'titleAlignments', 'url', 'previewUrl', 'binaryUrl', 'kind', 'subkind', 'duration', 'startTime', 'endTime', 'mediaStartTime', 'mediaEndTime', 'color', 'backgroundColor', 'hoverBackgroundColor', 'selectedBackgroundColor', 'borderColor', 'selectedBorderColor', 'warningColor', 'warningWidth', 'volumeSliderColor', 'volumeSliderWidth', 'volumeSliderDraggingWidth', 'textFont', 'textFontSize', 'textColor', 'textBackgroundColor', 'textPosition', 'textAutoScroll', 'borderWidth', 'borderRadius', 'wrapped', 'draggable', 'orderable', 'resizable', 'cuttable', 'deletable', 'wrapping', 'previewHeight', 'binaryHeight', 'indicators', 'markers', 'buttons', 'markerColor', 'markerWidth', 'volume', 'volumeRange', 'loading', 'targetSpeed', 'waveformData' ]); });