File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -223,6 +223,13 @@ export class ReplayContainer implements ReplayContainerInterface {
223223 return this . _isPaused ;
224224 }
225225
226+ /**
227+ * Determine if canvas recording is enabled
228+ */
229+ public isRecordingCanvas ( ) : boolean {
230+ return Boolean ( this . _canvas ) ;
231+ }
232+
226233 /** Get the replay integration options. */
227234 public getOptions ( ) : ReplayPluginOptions {
228235 return this . _options ;
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ export interface CanvasManagerInterface {
5656
5757export interface CanvasManagerOptions {
5858 recordCanvas : boolean ;
59- isManualSnapshot ?: boolean ;
59+ enableManualSnapshot ?: boolean ;
6060 blockClass : string | RegExp ;
6161 blockSelector : string | null ;
6262 unblockSelector : string | null ;
You can’t perform that action at this time.
0 commit comments