mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-09-22 00:41:09 +02:00
feat: support to not render remote cursor & username (#7130)
This commit is contained in:
@@ -70,6 +70,19 @@ export type CollaboratorPointer = {
|
||||
x: number;
|
||||
y: number;
|
||||
tool: "pointer" | "laser";
|
||||
/**
|
||||
* Whether to render cursor + username. Useful when you only want to render
|
||||
* laser trail.
|
||||
*
|
||||
* @default true
|
||||
*/
|
||||
renderCursor?: boolean;
|
||||
/**
|
||||
* Explicit laser color.
|
||||
*
|
||||
* @default string collaborator's cursor color
|
||||
*/
|
||||
laserColor?: string;
|
||||
};
|
||||
|
||||
export type DataURL = string & { _brand: "DataURL" };
|
||||
|
Reference in New Issue
Block a user