@dineug/erd-editor
Version:
Entity-Relationship Diagram Editor
24 lines (23 loc) • 591 B
TypeScript
import { StoryObj } from '@storybook/html';
import { HighlightedTextProps } from './HighlightedText';
declare const meta: {
title: string;
render: (args: HighlightedTextProps) => DocumentFragment;
argTypes: {
autoEscape: {
type: "boolean";
};
caseSensitive: {
type: "boolean";
};
searchWords: {
options: string[];
};
textToHighlight: {
type: "string";
};
};
};
export default meta;
type Story = StoryObj<HighlightedTextProps>;
export declare const Normal: Story;