From 6beb46ab9d2bcebf7ea032b2746f2d4174981e7c Mon Sep 17 00:00:00 2001 From: Cashew Date: Mon, 15 Jul 2024 11:44:31 +0700 Subject: [PATCH] remove vestigial code --- types/ext/language-transformer.d.ts | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/types/ext/language-transformer.d.ts b/types/ext/language-transformer.d.ts index 2e448f3751..3309e6c3e1 100644 --- a/types/ext/language-transformer.d.ts +++ b/types/ext/language-transformer.d.ts @@ -74,17 +74,3 @@ export type SuffixRule = { conditionsIn: TCondition[]; conditionsOut: TCondition[]; }; - -export type InflectionBase = ( - inflected: string, - deinflected: string, - conditionsIn: TCondition[], - conditionsOut: TCondition[] -) => Rule; - -export type SuffixInflectionBase = ( - inflected: string, - deinflected: string, - conditionsIn: TCondition[], - conditionsOut: TCondition[] -) => SuffixRule;