| 19 | import { decodeExtSplat, getTextureSize, unpackSplat } from "./utils"; |
| 20 | |
| 21 | export interface PagedSplatsOptions { |
| 22 | pager?: SplatPager; |
| 23 | rootUrl?: string; |
| 24 | requestHeader?: Record<string, string>; |
| 25 | withCredentials?: boolean; |
| 26 | fileBytes?: Uint8Array; |
| 27 | fileType?: SplatFileType; |
| 28 | maxSh?: number; |
| 29 | } |
| 30 | |
| 31 | export class PagedSplats implements SplatSource { |
| 32 | pager?: SplatPager; |
nothing calls this directly
no outgoing calls
no test coverage detected