import { newElement } from "./newElement"; export type ExcalidrawElement = ReturnType; export type ExcalidrawTextElement = ExcalidrawElement & { type: "text"; font: string; text: string; // for backward compatibility actualBoundingBoxAscent?: number; baseline: number; }; export type PointerType = "mouse" | "pen" | "touch";