2020-01-06 19:34:22 +04:00

10 lines
251 B
TypeScript

import { newElement } from "./newElement";
export type ExcalidrawElement = ReturnType<typeof newElement>;
export type ExcalidrawTextElement = ExcalidrawElement & {
type: "text";
font: string;
text: string;
actualBoundingBoxAscent: number;
};