@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) • 433 B
TypeScript
export declare class Scratch {
private values;
constructor();
add(key: string, newAddend: any): string;
Add(key: string, newAddend: any): string;
set(key: string, value: any): string;
Set(key: string, value: any): string;
delete(key: string): string;
get(key: string): any;
Get(key: string): any;
getValues(): Map<string, any>;
setInMap(key: string, mapKey: string, value: any): string;
}