Favivon - Correção

This commit is contained in:
2026-05-30 19:59:39 -03:00
parent 76ddaa815d
commit d7dfd221f0
32859 changed files with 5459654 additions and 404 deletions
+9
View File
@@ -0,0 +1,9 @@
import * as React from 'react';
import { Texture } from 'three';
export declare function useMatcapTexture(id?: number | string, format?: number, onLoad?: (texture: Texture | Texture[]) => void): [Texture, string, number];
export declare const MatcapTexture: ({ children, id, format, onLoad, }: {
children?: (texture: ReturnType<typeof useMatcapTexture>) => React.ReactNode;
id?: Parameters<typeof useMatcapTexture>[0];
format?: Parameters<typeof useMatcapTexture>[1];
onLoad?: Parameters<typeof useMatcapTexture>[2];
}) => React.JSX.Element;