UNPKG

@dineug/erd-editor

Version:

Entity-Relationship Diagram Editor

17 lines (16 loc) 421 B
import { StoryObj } from '@storybook/html'; type ContextMenuTemplateProps = { onClick?: (event: MouseEvent) => void; }; declare const meta: { title: string; render: (args: ContextMenuTemplateProps) => DocumentFragment; argTypes: { onClick: { action: string; }; }; }; export default meta; type Story = StoryObj<ContextMenuTemplateProps>; export declare const Normal: Story;