export interface File {
    path: string;
    encoding: 'utf8' | 'binary' | 'hex' | 'ascii';
}
