@novely/solid-renderer
Version:
Renderer for @novely/core powered by SolidJS
15 lines (14 loc) • 459 B
TypeScript
import type { Context } from '@novely/core';
import type { VoidComponent } from 'solid-js';
import type { IContextState } from '../context-state';
import type { SolidRendererStore } from '../renderer';
type GameProps = {
context: Context;
$contextState: IContextState;
store: SolidRendererStore;
controls: 'inside' | 'outside';
isPreview?: boolean;
className?: string;
};
declare const Game: VoidComponent<GameProps>;
export { Game };