supercat666's picture
add igv
78c921d
raw
history blame
No virus
460 Bytes
import { Binary } from '../type.js';
import { VariableWidthBuilder, BuilderOptions } from '../builder.js';
/** @ignore */
export declare class BinaryBuilder<TNull = any> extends VariableWidthBuilder<Binary, TNull> {
constructor(opts: BuilderOptions<Binary, TNull>);
get byteLength(): number;
setValue(index: number, value: Uint8Array): void;
protected _flushPending(pending: Map<number, Uint8Array | undefined>, pendingLength: number): void;
}