fui-fancyui
Version:
FancyUI Libary
50 lines (49 loc) • 1.2 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { default as FancyToastMessage } from '../FancyToastMessage';
declare const meta: {
component: typeof FancyToastMessage;
title: string;
parameters: {
docs: {
description: {
component: string;
};
story: {
height: string;
};
};
};
argTypes: {
toastMessages: {
description: string;
control: {
type: "object";
};
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
};
};
closeToast: {
description: string;
control: {
type: "object";
};
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
};
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;