UNPKG

@playform/pipe

Version:
17 lines (16 loc) 237 B
/** * @module Dir * * Represents a directory specification. * */ export default interface Interface { /** * The input directory. */ Input: string; /** * The output directory. */ Output: string; }