/** * File Type Details Interface. * * @author Joshua Clifford Reyes */ export default interface FileTypeDetailsInterface { ext: string; mime: string; }