first commit
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
import { SeekMethod } from './Extractor';
|
||||
export declare class DataFile {
|
||||
private buffers;
|
||||
private size;
|
||||
private pos;
|
||||
constructor(data?: Uint8Array);
|
||||
read(size: number): Uint8Array | null;
|
||||
readAll(): Uint8Array;
|
||||
write(data: Uint8Array): boolean;
|
||||
tell(): number;
|
||||
seek(pos: number, method: SeekMethod): boolean;
|
||||
private flatten;
|
||||
}
|
||||
Reference in New Issue
Block a user