storybook-addon-react-docgen
Version:
A storybook addon to display react docgen info.
17 lines (16 loc) • 374 B
TypeScript
/// <reference types="react" />
import { Channel } from '@storybook/channels';
import { API } from '@storybook/api';
interface PropsTableProps {
active: boolean;
channel: Channel;
api: API;
legacy: string;
}
export declare const PropsTable: {
(props: PropsTableProps): JSX.Element | null;
defaultProps: {
legacy: string;
};
};
export {};