mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
395 B
TypeScript
12 lines
395 B
TypeScript
// https://github.com/mrdoob/three.js/blob/master/examples/js/loaders/TGALoader.js
|
|
|
|
import { LoadingManager, Texture } from "./three-core";
|
|
|
|
export class TGALoader {
|
|
constructor(manager?: LoadingManager);
|
|
|
|
manager: LoadingManager;
|
|
|
|
load(url: string, onLoad?: (texture: Texture) => void, onProgress?: (event: ProgressEvent) => void, onError?: (event: ErrorEvent) => void): Texture;
|
|
}
|