import { BasicAffixKind } from "./basic-affix-kind.type";
import { HypotheticalAffixKind } from "./hypothetical-affix-kind.type";
import { SuprasegmentalAffixKind } from "./suprasegmental-affix-kind.type";
/**
 * @description The type defines the various types of affixes.
 * @export
 * @link https://en.wikipedia.org/wiki/Affix
 */
export type AffixKind = BasicAffixKind | SuprasegmentalAffixKind | HypotheticalAffixKind | 'disfix' | 'duplifix';
