@zsviczian/excalidraw
Version:
Excalidraw as a React component
21 lines (20 loc) • 844 B
TypeScript
export declare const actionGoToCollaborator: import("./types").Action<Readonly<{
pointer?: import("../types").CollaboratorPointer;
button?: "up" | "down";
selectedElementIds?: import("../types").AppState["selectedElementIds"];
username?: string | null;
userState?: import("@excalidraw/common").UserIdleState;
color?: {
background: string;
stroke: string;
};
avatarUrl?: string;
id?: string;
socketId?: import("../types").SocketId;
isCurrentUser?: boolean;
isInCall?: boolean;
isSpeaking?: boolean;
isMuted?: boolean;
}>> & {
keyTest?: ((event: React.KeyboardEvent | KeyboardEvent, appState: import("../types").AppState, elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], app: import("../types").AppClassProperties) => boolean) | undefined;
};