@types/three
Version:
TypeScript definitions for three
12 lines (9 loc) • 312 B
TypeScript
import TextureNode from "../../nodes/accessors/TextureNode.js";
import Binding from "./Binding.js";
declare class Sampler extends Binding {
texture: TextureNode | null;
version: number;
readonly isSampler: true;
constructor(name: string, texture: TextureNode | null);
}
export default Sampler;