import type { IWritable } from "./IWritable.ts"; /** * ISeekableWriter describes a writer interface with seek abilities. */ export interface ISeekableWriter extends IWritable { /** Move the cursor to the given position */ seek(position: bigint): Promise; /** Remove data after the current write position */ truncate(): Promise; } //# sourceMappingURL=ISeekableWriter.d.ts.map