3d-tiles-renderer
Version:
https://github.com/AnalyticalGraphicsInc/3d-tiles/tree/master/specification
12 lines (9 loc) • 338 B
TypeScript
export class LoaderBase<Result = any, ParseResult = Promise< Result >> {
fetchOptions: any;
workingPath: string;
/** @deprecated in favor of `loadAsync` */
load( url: string ): Promise< Result >;
loadAsync( url: string ): Promise< Result >;
resolveExternalURL( url: string ): string;
parse( buffer: ArrayBuffer ): ParseResult;
}