Files
Projekt-Visualisierung/node_modules/@maplibre/mlt/dist/encoding/packNullableUtils.d.ts
2026-04-15 17:08:39 +02:00

5 lines
360 B
TypeScript

import type { TypedArrayInstance } from "../decoding/unpackNullableUtils";
import BitVector from "../vector/flat/bitVector";
export declare function packNullable<T extends TypedArrayInstance>(data: T, presentBits: BitVector | null): T;
export declare function packNullableBoolean(data: Uint8Array, dataSize: number, presentBits: BitVector | null): Uint8Array;