md-curcuma
Version:
A Typescript library for transporting and converting markdown and other data.
25 lines (24 loc) • 1.02 kB
TypeScript
import { Data_Interface } from "../../io/types";
import { MD_FileContent } from "./helpers/MD_FileContent";
import { MD_Observable_Abstract_TaskBase } from "./MD_Observable_Abstract_TaskBase";
import { MD_Task_Parameter_Type, Task_Interface } from "../types";
export interface MD_Callout_TemplateValues_Type {
context: string;
title: string;
icon: string;
content: string;
}
export declare class MD_Callout_Task<T extends string> extends MD_Observable_Abstract_TaskBase<T> implements Task_Interface<T> {
parameter: MD_Task_Parameter_Type;
collection: string[] | null | undefined;
counter: number;
doCollect: boolean;
protected template_values: MD_Callout_TemplateValues_Type;
protected a_mapping: any;
protected b_mapping: any;
protected c_mapping: any;
protected mappings: any;
constructor(parameter: MD_Task_Parameter_Type);
perform(dao: Data_Interface<T>): Data_Interface<T>;
protected transform(mdfc: MD_FileContent, index: number): MD_FileContent;
}