UNPKG

@loaders.gl/textures

Version:

Framework-independent loaders for compressed and super compressed (basis) textures

15 lines (12 loc) 313 B
// loaders.gl // SPDX-License-Identifier: MIT // Copyright (c) vis.gl contributors export type {ImageType} from '@loaders.gl/images'; export type UrlOptions = { baseUrl?: string; index?: number; face?: number; lod?: number; direction?: string; }; export type GetUrl = (options: UrlOptions) => string;