UNPKG

@types/three

Version:
18 lines (11 loc) 374 B
import { Texture } from "../../textures/Texture.js"; import Binding from "./Binding.js"; declare class Sampler extends Binding { version: number; generation: number | null; readonly isSampler: true; constructor(name: string, texture: Texture | null); set texture(value: Texture | null); get texture(): Texture | null; } export default Sampler;