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.

15 lines (14 loc) 327 B
import type { Observable } from "./observable.js"; /** * File request interface */ export interface IFileRequest { /** * Raised when the request is complete (success or error). */ onCompleteObservable: Observable<IFileRequest>; /** * Aborts the request for a file. */ abort: () => void; }