UNPKG

storybook-addon-react-docgen

Version:
9 lines (8 loc) 349 B
/// <reference types="react" /> import { DisplayOptions } from '../types'; declare type PreviewProps<T> = Pick<DisplayOptions, 'maxPropArrayLength' | 'maxPropObjectKeys' | 'maxPropStringLength' | 'maxPropsIntoLine'> & { val: T; level?: number; }; declare const PropValue: (props: PreviewProps<any>) => JSX.Element; export default PropValue;