import Glossary from "./glossary.ts"; import APIBase from "./base.ts"; export default class Word extends APIBase { public writing: string = "TODO"; public reading: string = "TODO"; constructor() { super(); } async glossary() { return new Glossary().withParent(await this.api); } }