fix recording compare (#802)
This commit is contained in:
@@ -51,6 +51,15 @@ type MediaPlayerContextType = {
|
|||||||
regions: Regions | null;
|
regions: Regions | null;
|
||||||
activeRegion: RegionType;
|
activeRegion: RegionType;
|
||||||
setActiveRegion: (region: RegionType) => void;
|
setActiveRegion: (region: RegionType) => void;
|
||||||
|
renderPitchContour: (
|
||||||
|
region: RegionType,
|
||||||
|
options?: {
|
||||||
|
repaint?: boolean;
|
||||||
|
canvasId?: string;
|
||||||
|
containerClassNames?: string[];
|
||||||
|
data?: Chart["data"];
|
||||||
|
}
|
||||||
|
) => void;
|
||||||
editingRegion: boolean;
|
editingRegion: boolean;
|
||||||
setEditingRegion: (editing: boolean) => void;
|
setEditingRegion: (editing: boolean) => void;
|
||||||
pitchChart: Chart;
|
pitchChart: Chart;
|
||||||
@@ -602,6 +611,7 @@ export const MediaPlayerProvider = ({
|
|||||||
pitchChart,
|
pitchChart,
|
||||||
activeRegion,
|
activeRegion,
|
||||||
setActiveRegion,
|
setActiveRegion,
|
||||||
|
renderPitchContour,
|
||||||
editingRegion,
|
editingRegion,
|
||||||
setEditingRegion,
|
setEditingRegion,
|
||||||
generateTranscription,
|
generateTranscription,
|
||||||
|
|||||||
Reference in New Issue
Block a user