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