We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebc28f4 commit 582a031Copy full SHA for 582a031
src/translator/modifier.ts
@@ -155,7 +155,9 @@ function pi(
155
.filter((modifier) =>
156
modifier.type !== "verb" &&
157
(modifier.type !== "adjective" || modifier.inWayPhrase == null)
158
- );
+ ) as IterableResult<
159
+ PhraseTranslation & { type: Exclude<PhraseTranslation["type"], "verb"> }
160
+ >;
161
}
162
function modifier(modifier: TokiPona.Modifier) {
163
switch (modifier.type) {
0 commit comments