UNPKG

@mdfriday/foundry

Version:

The core engine of MDFriday. Convert Markdown and shortcodes into fully themed static sites – Hugo-style, powered by TypeScript.

18 lines 604 B
import { PageMeta } from "../../../domain/content"; export declare class Meta implements PageMeta { list: string; parameters: Record<string, any>; weight: number; date: Date; constructor(list?: string, parameters?: Record<string, any>, weight?: number, date?: Date); description(): string; params(): Record<string, any>; pageWeight(): number; pageDate(): Date; publishDate(): Date; relatedKeywords(cfg: any): Promise<any[]>; shouldList(global: boolean): boolean; shouldListAny(): boolean; noLink(): boolean; } //# sourceMappingURL=pagemeta.d.ts.map