UNPKG

@threlte/extras

Version:

Utilities, abstractions and plugins for your Threlte apps

12 lines (11 loc) 354 B
import type { Snippet } from 'svelte'; /** * [Scissor cut renders](https://threejs.org/examples/?q=mul#webgl_multiple_elements) its contents to the given dom area. The default threlte scene is used if none provided. */ export type ViewProps = { /** * The target dom element. */ dom: HTMLElement | undefined; children: Snippet; };