UNPKG

@playcanvas/splat-transform

Version:

Library and CLI tool for 3D Gaussian splat format conversion and transformation

13 lines (12 loc) 487 B
/** * Emit a single `Writing`-group entry as `<filename> (<formatted size>)`. * * Lives here (rather than in `io/write/`) so the low-level I/O layer stays * decoupled from the logger / formatting code; only writer modules pull this * in alongside their renderer-aware output. * * @param filename - Display name for the written file. * @param bytes - Number of bytes written. */ declare const logWrittenFile: (filename: string, bytes: number) => void; export { logWrittenFile };