Browse Source

Update FXAAShader.d.ts

FishOrBear 6 năm trước cách đây
mục cha
commit
84fa9aedc2
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  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;
-}
+};