UNPKG

slanted-gamedev-toolz

Version:

A slanted mix of tools for your brilliant ideas in game design.

14 lines (13 loc) 376 B
/// <reference types="react" /> import type { StoryObj } from "@storybook/react-vite"; declare const meta: { title: string; component: import("react").FC<import("./Test").TestProps>; parameters: { layout: string; }; }; export default meta; type Story = StoryObj<typeof meta>; export declare const Primary: Story; export declare const Secondary: Story;