aboutsummaryrefslogtreecommitdiff
path: root/api/sentence-word.ts
diff options
context:
space:
mode:
Diffstat (limited to 'api/sentence-word.ts')
-rw-r--r--api/sentence-word.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/api/sentence-word.ts b/api/sentence-word.ts
deleted file mode 100644
index 6b2ef22..0000000
--- a/api/sentence-word.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-import { ParseToken } from "../language/types.ts";
-import Word from "./word.ts";
-
-export default class SentenceWord extends Word {
- public indexStart: number = 0;
- public indexEnd: number = 0;
-
- constructor(source: string | ParseToken) {
- super();
- }
-}