UNPKG

@dineug/erd-editor

Version:

Entity-Relationship Diagram Editor

18 lines (17 loc) 415 B
import { StoryObj } from '@storybook/html'; import { ErdEditorProps } from './ErdEditor'; declare const meta: { title: string; render: (args: ErdEditorProps) => DocumentFragment; argTypes: { readonly: { type: "boolean"; }; }; parameters: { css: string; }; }; export default meta; type Story = StoryObj<ErdEditorProps>; export declare const Normal: Story;