UNPKG

@isotope/docking

Version:

Docking - Isotope-based Static Site Generator

17 lines (14 loc) 296 B
import * as utils from "../utils"; import { Resource } from "./resource"; /** * Class representing Docking asset. */ class Asset extends Resource { /** * Processes the asset. */ public async process(): Promise<void> { await utils.copy(this.input, this.output); } } export { Asset };