UNPKG

silly-password-generator

Version:

🔑 Generate silly passwords that are secure and easy to use. Inspired by xkcd.

8 lines (7 loc) • 399 B
/// <reference types="react" /> import type { Meta, StoryObj } from '@storybook/react'; declare const StoryComponent: ({ ...props }: import("../components/SillyPasswordGenerator").SillyPasswordGeneratorProps) => import("react").JSX.Element; declare const meta: Meta<typeof StoryComponent>; export default meta; type Story = StoryObj<typeof meta>; export declare const SillyPasswordGenerator: Story;