8 lines
204 B
TypeScript
8 lines
204 B
TypeScript
import { ExcalidrawElement, ExcalidrawTextElement } from "./types";
|
|
|
|
export function isTextElement(
|
|
element: ExcalidrawElement,
|
|
): element is ExcalidrawTextElement {
|
|
return element.type === "text";
|
|
}
|