Parcourir la source

Update FXAAShader.d.ts

FishOrBear il y a 6 ans
Parent
commit
84fa9aedc2
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      examples/jsm/shaders/FXAAShader.d.ts

+ 2 - 2
examples/jsm/shaders/FXAAShader.d.ts

@@ -2,11 +2,11 @@ import {
   Uniform
 } from '../../../src/Three';
 
-export interface FXAAShader {
+export const FXAAShader: {
   uniforms: {
     tDiffuse: Uniform;
     resolution: Uniform;
   };
   vertexShader: string;
   fragmentShader: string;
-}
+};