diff options
author | Cashew <52880648+Scrub1492@users.noreply.github.com> | 2023-12-29 10:31:45 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-29 03:31:45 +0000 |
commit | d90d408279938d389019a8bed15c5eb95af7c8bc (patch) | |
tree | 0c81f456e3aaf853528c51b0d85ae54fcde05412 /types | |
parent | c13ee62b84693346e28741d7f016c6700a2c27d4 (diff) |
Comment updates (#481)
* comment updates
* comment updates
Diffstat (limited to 'types')
-rw-r--r-- | types/ext/translation-internal.d.ts | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/types/ext/translation-internal.d.ts b/types/ext/translation-internal.d.ts index 784a5979..5845b45d 100644 --- a/types/ext/translation-internal.d.ts +++ b/types/ext/translation-internal.d.ts @@ -40,13 +40,13 @@ export type TextDeinflectionOptionsArrays = [ export enum DeinflectionRuleFlags { None = 0x0, - VerbIchidan = 0b00000001, // Verb ichidan - VerbGodan = 0b00000010, // Verb godan - VerbSuru = 0b00000100, // Verb suru - VerbKuru = 0b00001000, // Verb kuru - VerbZuru = 0b00010000, // Verb zuru - AdjectiveI = 0b00100000, // Adjective i - IruEndingIntermediate = 0b01000000, // Intermediate -iru endings for progressive or perfect tense + VerbIchidan = 0b00000001, + VerbGodan = 0b00000010, + VerbSuru = 0b00000100, + VerbKuru = 0b00001000, + VerbZuru = 0b00010000, + AdjectiveI = 0b00100000, + IruEndingIntermediate = 0b01000000, } export type Deinflection = { |