UNPKG

three-stdlib

Version:

stand-alone library of threejs examples

9 lines (8 loc) 227 B
/** * Simple test shader */ import type { IShader } from './types'; export type BasicShaderUniforms = {}; export interface IBasicShader extends IShader<BasicShaderUniforms> { } export declare const BasicShader: IBasicShader;