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