export interface IFilePath { /** * Directory path where filename */ dirname?: string; /** * Filename without extension */ filename?: string; /** * Typ of file (optional) */ type?: string; }