@threlte/theatre
Version:
Threlte Components for Theatre, an animation library with a professional motion design toolset
13 lines (12 loc) • 377 B
TypeScript
import { type Snippet } from 'svelte';
import type { IProject, IProjectConfig } from '@theatre/core';
declare const Project: import("svelte").Component<{
name: string;
config?: IProjectConfig | undefined;
project?: IProject;
isReady?: boolean;
children?: Snippet<[{
project: IProject;
}]>;
}, {}, "project" | "isReady">;
export default Project;