md-curcuma
Version:
A Typescript library for transporting and converting markdown and other data.
10 lines (9 loc) • 377 B
TypeScript
import { Mapper_Properties, Mapper_Task_Interface } from "../../core/mapper";
export interface TrimString_MappingType {
char: string;
}
export declare class TrimString_Mapping implements Mapper_Task_Interface {
protected properties: TrimString_MappingType;
constructor(properties: TrimString_MappingType);
perform(mapping_properties: Mapper_Properties): any;
}