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.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/api/sentence-word.ts b/api/sentence-word.ts
new file mode 100644
index 0000000..a5bb9ca
--- /dev/null
+++ b/api/sentence-word.ts
@@ -0,0 +1,10 @@
+import Word from "./word.ts";
+
+export default class SentenceWord extends Word {
+ public indexStart: number = 0;
+ public indexEnd: number = 0;
+
+ constructor() {
+ super();
+ }
+}