Files
2026-05-30 19:59:39 -03:00

7 lines
176 B
TypeScript

import { DepthTexture } from 'three';
declare function useDepthBuffer({ size, frames }?: {
size?: number;
frames?: number;
}): DepthTexture;
export { useDepthBuffer };