Fix typo in Tool.ts: export keyword was missing 'e'

This commit is contained in:
2026-06-22 21:08:39 +00:00
parent b60ca1b555
commit 720ce055df
+1 -1
View File
@@ -1,5 +1,5 @@
import { YjsDocument } from '../crdt/YjsDocument';
xport abstract class Tool {
export abstract class Tool {
protected yjsDoc: YjsDocument;
protected name: string;