taraskevizer
Version:
Канвэртацыя акадэмічнага правапісу ў клясычны
20 lines (19 loc) • 415 B
TypeScript
/**
* Created in {@link trim}.
*
* Used in {@link untrim}.
*/
export type TrimStorage = {
trim: {
before: string;
after: string;
};
};
/**
* Captures whitespaces around the text.
*/
export declare const trim: import("./types").TaraskStep<TrimStorage>;
/**
* Brings original whitespaces around the text back.
*/
export declare const untrim: import("./types").TaraskStep<TrimStorage>;