@react-three/postprocessing
Version:
postprocessing wrapper for React and @react-three/fiber
9 lines (8 loc) • 354 B
TypeScript
import { ToneMappingEffect } from 'postprocessing';
import { type EffectProps } from '../util';
export type ToneMappingProps = EffectProps<typeof ToneMappingEffect>;
export declare const ToneMapping: ({ blendFunction, opacity, ...props }: {
[x: string]: any;
blendFunction?: any;
opacity?: any;
}) => import("react/jsx-runtime").JSX.Element;