refactor: auto ordered imports (#9163)

This commit is contained in:
Marcel Mraz
2025-03-12 15:23:31 +01:00
committed by GitHub
parent 82b9a6b464
commit 21ffaf4d76
421 changed files with 3531 additions and 2762 deletions
+6 -4
View File
@@ -1,12 +1,14 @@
import type { LaserPointerOptions } from "@excalidraw/laser-pointer";
import type { Trail } from "./animated-trail";
import { AnimatedTrail } from "./animated-trail";
import { getClientColor } from "./clients";
import { DEFAULT_LASER_COLOR } from "./constants";
import { easeOut } from "./utils";
import type { Trail } from "./animated-trail";
import type { AnimationFrameHandler } from "./animation-frame-handler";
import type App from "./components/App";
import type { SocketId } from "./types";
import { easeOut } from "./utils";
import { getClientColor } from "./clients";
import { DEFAULT_LASER_COLOR } from "./constants";
export class LaserTrails implements Trail {
public localTrail: AnimatedTrail;