Browse Source

Update FXAAShader.d.ts

FishOrBear 6 years ago
parent
commit
84fa9aedc2
1 changed files with 2 additions and 2 deletions
  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;
-}
+};