close #51 add mouse tail feature

This commit is contained in:
Yanzhen Yu
2020-09-07 14:52:57 +08:00
parent 0256bea4bc
commit 0688bb6353
3 changed files with 73 additions and 3 deletions

View File

@@ -382,6 +382,14 @@ export type playerConfig = {
insertStyleRules: string[];
triggerFocus: boolean;
UNSAFE_replayCanvas: boolean;
mouseTail:
| boolean
| {
duration?: number;
lineCap?: string;
lineWidth?: number;
strokeStyle?: string;
};
unpackFn?: UnpackFn;
};