Skip to content

Commit ec8e47b

Browse files
committed
rf: Remove commented bit
1 parent 0c4c2c1 commit ec8e47b

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

src/types/filetree.ts

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,6 @@
11
import { basename } from '@std/path'
22
import { FileIgnoreRules } from '../files/ignore.ts'
33

4-
// export interface BIDSFile {
5-
// // Filename
6-
// name: string
7-
// // Dataset relative path for the file
8-
// path: string
9-
// // File size in bytes
10-
// size: number
11-
// // BIDS ignore status of the file
12-
// ignored: boolean
13-
// // ReadableStream to file raw contents
14-
// stream: ReadableStream<Uint8Array<ArrayBuffer>>
15-
// // Resolve stream to decoded utf-8 text
16-
// text: () => Promise<string>
17-
// // Read a range of bytes
18-
// readBytes: (size: number, offset?: number) => Promise<Uint8Array<ArrayBuffer>>
19-
// // Access the parent directory
20-
// parent: FileTree
21-
// // File has been viewed
22-
// viewed: boolean
23-
// }
24-
254
export interface FileOpener {
265
size: number
276
stream: () => Promise<ReadableStream<Uint8Array<ArrayBuffer>>>

0 commit comments

Comments
 (0)