File tree Expand file tree Collapse file tree 1 file changed +0
-21
lines changed Expand file tree Collapse file tree 1 file changed +0
-21
lines changed Original file line number Diff line number Diff line change 11import { basename } from '@std/path'
22import { 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-
254export interface FileOpener {
265 size : number
276 stream : ( ) => Promise < ReadableStream < Uint8Array < ArrayBuffer > > >
You can’t perform that action at this time.
0 commit comments