@threlte/theatre
Version:
Threlte Components for Theatre, an animation library with a professional motion design toolset
18 lines (17 loc) • 506 B
TypeScript
import type { IProject, ISheet } from '@theatre/core';
import { type Snippet } from 'svelte';
import { SequenceController } from '../sequence/SequenceController.js';
interface Props {
name?: string;
instance?: string | undefined;
sheet?: ISheet;
children?: Snippet<[{
sheet: ISheet;
}]>;
}
declare const Sheet: import("svelte").Component<Props, {
project: IProject;
sequence: SequenceController;
}, "sheet">;
type Sheet = ReturnType<typeof Sheet>;
export default Sheet;