UNPKG

@threlte/core

Version:

A 3D framework for the web, built on top of Svelte and Three.js

9 lines (8 loc) 283 B
import { type Camera } from 'three'; import { type CurrentWritable } from '../../utilities'; type CameraContext = { camera: CurrentWritable<Camera>; }; export declare const createCameraContext: () => CameraContext; export declare const useCamera: () => CameraContext; export {};