shevchenko
Version:
JavaScript library for declension of Ukrainian anthroponyms
12 lines (11 loc) • 412 B
TypeScript
import { InflectionCommand } from './declension-types';
import { InflectionCommandRunner } from './inflection-command-runner';
export declare class AppendCommandRunner implements InflectionCommandRunner {
private readonly command;
constructor(command: InflectionCommand);
/**
* Appends the command value to the given value.
* Returns a new value.
*/
exec(value: string): string;
}