@mdfriday/foundry
Version:
The core engine of MDFriday. Convert Markdown and shortcodes into fully themed static sites – Hugo-style, powered by TypeScript.
22 lines • 578 B
TypeScript
/**
* Compiler - TypeScript equivalent of Go's Compiler valueobject
* Represents compiler version information
*/
export declare class Compiler {
private readonly ver;
constructor(version: string);
/**
* Get compiler version
*/
version(): string;
/**
* Get environment (simplified implementation)
*/
environment(): string;
}
/**
* Factory function to create new Compiler
* TypeScript equivalent of NewVersion function from Go
*/
export declare function newVersion(version: string): Compiler;
//# sourceMappingURL=version.d.ts.map