/**
 * @module Dir
 *
 * Represents a directory specification.
 *
 */
export default interface Interface {
    /**
     * The input directory.
     */
    Input: string;
    /**
     * The output directory.
     */
    Output: string;
}
