@mdfriday/foundry
Version:
The core engine of MDFriday. Convert Markdown and shortcodes into fully themed static sites – Hugo-style, powered by TypeScript.
27 lines • 594 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OriginFs = void 0;
class OriginFs {
constructor(source, origin, publishDir) {
this.source = source;
this.origin = origin;
this.publishDir = publishDir;
}
/**
* Get the source filesystem
*/
getSource() {
return this.source;
}
/**
* Get the origin filesystem
*/
getOrigin() {
return this.origin;
}
publish() {
return this.publishDir;
}
}
exports.OriginFs = OriginFs;
//# sourceMappingURL=originfs.js.map