@dineug/erd-editor
Version:
Entity-Relationship Diagram Editor
26 lines (25 loc) • 598 B
TypeScript
import { StoryObj } from '@storybook/html';
import { CodeBlockProps } from './CodeBlock';
declare const meta: {
title: string;
render: (args: CodeBlockProps) => DocumentFragment;
argTypes: {
value: {
control: string;
};
lang: {
control: string;
options: string[];
};
theme: {
control: string;
options: string[];
};
onCopy: {
action: string;
};
};
};
export default meta;
type Story = StoryObj<CodeBlockProps>;
export declare const Normal: Story;