@mdfriday/foundry
Version:
The core engine of MDFriday. Convert Markdown and shortcodes into fully themed static sites – Hugo-style, powered by TypeScript.
14 lines (13 loc) • 428 B
TypeScript
export interface ResourceMetadata {
target: string;
mediaType: string;
metaData: Record<string, any>;
}
export declare class ResourceMetadataImpl implements ResourceMetadata {
target: string;
mediaType: string;
metaData: Record<string, any>;
constructor(target: string, mediaType: string, metaData: Record<string, any>);
marshal(): string;
static unmarshal(data: string): ResourceMetadata;
}