aboutsummaryrefslogtreecommitdiff
path: root/api/sentence.ts
diff options
context:
space:
mode:
Diffstat (limited to 'api/sentence.ts')
-rw-r--r--api/sentence.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/api/sentence.ts b/api/sentence.ts
index dc14cb2..6f67844 100644
--- a/api/sentence.ts
+++ b/api/sentence.ts
@@ -1,9 +1,10 @@
import APIBase from "./base.ts";
+import SentenceWord from "./sentence-word.ts";
import Word from "./word.ts";
import Yomikun from "./yomikun.ts";
export default class Sentence extends APIBase {
- public words: Array<Word> = [];
+ public words: Array<SentenceWord> = [];
constructor() {
super();