UNPKG

md-curcuma

Version:

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

10 lines (9 loc) 546 B
import { Data_Interface } from "../../io/types"; import { Observable_Abstract_TaskBase } from "../Observable_Abstract_TaskBase"; import { Task_Interface } from "../types"; import { MD_FileContent } from "./helpers/MD_FileContent"; export declare abstract class MD_Observable_Abstract_TaskBase<T extends string> extends Observable_Abstract_TaskBase<T> implements Task_Interface<T> { constructor(); perform(dao: Data_Interface<T>): Data_Interface<T>; protected abstract transform(mdfc: MD_FileContent, index: number): MD_FileContent; }