@typedly/affix
Version:
A TypeScript type definitions package for affix.
10 lines (9 loc) • 447 B
TypeScript
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';