UNPKG

md-curcuma

Version:

A Typescript library for transporting and converting markdown and other data.

10 lines (9 loc) 378 B
import { Mapper_Properties, Mapper_Task_Interface } from "../../core/mapper"; export interface ArrayJoin_MappingType { separator: string; } export declare class ArrayJoin_Mapping implements Mapper_Task_Interface { protected properties: ArrayJoin_MappingType; constructor(properties: ArrayJoin_MappingType); perform(mapping_properties: Mapper_Properties): any; }