nhb-toolbox
Version:
A versatile collection of smart, efficient, and reusable utility functions, classes and types for everyday development needs.
12 lines (11 loc) • 351 B
TypeScript
/** A pair of RegExp and replacement for Verbalizer rules */
export type VerbRule = [RegExp, string];
/** * Type interface for Irregular Verb Entry */
export interface IrregularEntry {
/** Base form of a verb */
base: string;
/** Past form of a verb */
past: string;
/** Past participle form of a verb */
participle: string;
}