UNPKG

3d-tiles-renderer

Version:

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

10 lines (7 loc) 253 B
export class LoaderBase<Result = any, ParseResult = Promise< Result >> { fetchOptions: any; workingPath: string; loadAsync( url: string ): Promise< Result >; resolveExternalURL( url: string ): string; parse( buffer: ArrayBuffer ): ParseResult; }