UNPKG
spz-js
Version:
latest (1.2.5)
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.1
1.1.0
1.0.7
1.0.6
1.0.5
1.0.4
Convert gaussian splats between SPZ and PLY formats.
github.com/arrival-space/spz-js
spz-js
/
dist
/
compression.d.ts
4 lines
(3 loc)
•
265 B
TypeScript
View Raw
1
2
3
4
export
declare
function
decompressGzipped
(
data:
Uint8Array
):
Promise
<
Uint8Array
>;
export
declare
function
decompressGzipStream
(
stream: ReadableStream<
Uint8Array
>
):
Promise
<
Uint8Array
>;
export
declare
function
compressGzipped
(
data:
Uint8Array
):
Promise
<
Uint8Array
>;