UNPKG

3d-tiles-renderer

Version:

https://github.com/AnalyticalGraphicsInc/3d-tiles/tree/master/specification

11 lines (8 loc) 290 B
export class LoaderBase<Result = any, ParseResult = Promise< Result >> { fetchOptions: any; workingPath: string; load( url: string ): Promise< Result >; resolveExternalURL( url: string ): string; workingPathForURL( url: string ): string parse( buffer: ArrayBuffer ): ParseResult; }