UNPKG

md-curcuma

Version:

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

19 lines (18 loc) 556 B
import { Mapper_Task_Interface } from "../../../core/mapper"; import { MD_Template } from "./MD_Template"; export interface MD_Frontmatter_Parameter_Type { frontmatter_filename: string; frontmatter: MD_Frontmatter_Template; mappings: Mapper_Task_Interface[]; } export interface MD_Frontmatter_Type { title: string; date: string; url: string; url_prefix: string; uuid: string; weight: number; } export declare class MD_Frontmatter_Template extends MD_Template { getFrontmatter(values: MD_Frontmatter_Type): string; }