UNPKG

@babylonjs/core

Version:

Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.

17 lines (16 loc) 475 B
/** * Fetches a resource from the network * @param url defines the url to fetch the resource from * @param options defines the options to use when fetching the resource * @returns a promise that resolves when the resource is fetched * @internal */ export declare function _FetchAsync(url: string, options: Partial<{ method: string; responseHeaders?: string[]; }>): Promise<{ response: Response; headerValues: { [key: string]: string; }; }>;