Interface IFileFunc

interface IFileFunc {
    constructor(name?: string, type?: string, size?: number): IFile;
    fetchById(id: string): IFile;
    findById(id: string): IFile;
}

Methods