@gmod/bam
Version:
Parser for BAM and BAM index (bai) files
17 lines (14 loc) • 335 B
text/typescript
export default class NullFilehandle {
public read(): Promise<any> {
throw new Error('never called')
}
public stat(): Promise<any> {
throw new Error('never called')
}
public readFile(): Promise<any> {
throw new Error('never called')
}
public close(): Promise<any> {
throw new Error('never called')
}
}