Spaces:
Running
Running
File size: 460 Bytes
78c921d |
1 2 3 4 5 6 7 8 9 10 |
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;
}
|