close #51 add mouse tail feature

This commit is contained in:
Yanzhen Yu
2026-04-01 12:00:00 +08:00
parent 867ba85049
commit 048aadaec5
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;
};