UNPKG

@dineug/erd-editor

Version:

Entity-Relationship Diagram Editor

24 lines (23 loc) 523 B
import { StoryObj } from '@storybook/html'; import { SliderProps } from './Slider'; declare const meta: { title: string; render: (args: SliderProps) => DocumentFragment; argTypes: { min: { control: string; }; max: { control: string; }; value: { control: string; }; onChange: { action: string; }; }; }; export default meta; type Story = StoryObj<SliderProps>; export declare const Normal: Story;