@mdfriday/foundry
Version:
The core engine of MDFriday. Convert Markdown and shortcodes into fully themed static sites – Hugo-style, powered by TypeScript.
23 lines • 723 B
TypeScript
import { FileMetaInfo } from '../type';
/**
* Service class for filesystem entity operations
* TypeScript equivalent of Go's Service struct
*/
export declare class Service {
/**
* Creates a new FileMetaInfo with the given filename
* TypeScript equivalent of Go's NewFileMetaInfo method
*/
newFileMetaInfo(filename: string): FileMetaInfo;
/**
* Creates a new FileMetaInfo with the given content
* TypeScript equivalent of Go's NewFileMetaInfoWithContent method
*/
newFileMetaInfoWithContent(content: string): FileMetaInfo;
}
/**
* Creates a new Service instance
*/
export declare function newService(): Service;
export default Service;
//# sourceMappingURL=service.d.ts.map