UNPKG

fui-fancyui

Version:
69 lines (68 loc) 1.62 kB
import { StoryObj } from '@storybook/react'; import { default as PageNumberList } from '../PageNumberList'; declare const meta: { component: typeof PageNumberList; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { pageLimits: { description: string; control: { type: "number"; }; table: { defaultValue: { summary: string; }; }; }; currentPage: { description: string; control: { type: "number"; }; table: { defaultValue: { summary: string; }; }; }; pageHandler: { description: string; control: { type: "object"; }; }; showPages: { description: string; control: { type: "number"; }; table: { defaultValue: { summary: string; }; }; }; numberButtonStyle: { description: string; control: { type: "object"; }; table: { defaultValue: { summary: string; }; }; }; }; }; export default meta; type Story = StoryObj<typeof meta>; export declare const Primary: Story;