excalidraw/src/element/typeChecks.ts

8 lines
204 B
TypeScript
Raw Normal View History

import { ExcalidrawElement, ExcalidrawTextElement } from "./types";
export function isTextElement(
2020-01-24 12:04:54 +02:00
element: ExcalidrawElement,
): element is ExcalidrawTextElement {
return element.type === "text";
}