UNPKG

md-curcuma

Version:

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

12 lines (11 loc) 398 B
import { MD_LinkTransformer_TemplateValues_Type } from "../tasks/markdown"; export interface CopyTask_Type { source: string; target: string; simulate: boolean; } export declare class CopyJob { static perform(copy_task: CopyTask_Type, template_values: MD_LinkTransformer_TemplateValues_Type): void; static hasCopyTask(obj: any): boolean; static toString(obj: any): string; }