fix(ui): doc commets
This commit is contained in:
parent
ef3cde706f
commit
08c71221d8
1 changed files with 7 additions and 1 deletions
|
|
@ -8,11 +8,17 @@ export default class CanvasManager {
|
|||
private lastTs = 0;
|
||||
|
||||
constructor(
|
||||
/**
|
||||
* Canvas node id
|
||||
* */
|
||||
private readonly nodeId: string,
|
||||
/**
|
||||
* time between node creation and session start
|
||||
*/
|
||||
private readonly delta: number,
|
||||
private readonly filename: string,
|
||||
private readonly getNode: (id: number) => VElement | undefined) {
|
||||
// getting mp4 file composed from canvas snapshot images
|
||||
// getting mp4 file composed of canvas snapshot images
|
||||
fetch(this.filename).then((r) => {
|
||||
if (r.status === 200) {
|
||||
r.blob().then((blob) => {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue