@threlte/theatre
Version:
Threlte Components for Theatre, an animation library with a professional motion design toolset
14 lines (13 loc) • 383 B
TypeScript
import type { Snippet } from 'svelte';
import type { IProjectConfig } from '@theatre/core';
interface Props {
studio?: {
enabled?: boolean;
hide?: boolean;
};
config?: IProjectConfig | undefined;
children?: Snippet;
}
declare const Theatre: import("svelte").Component<Props, {}, "">;
type Theatre = ReturnType<typeof Theatre>;
export default Theatre;