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