UNPKG

@structured-types/playground-plugin

Version:

Typescript playground plugin to display the types from source code.

8 lines (7 loc) 227 B
import { FC } from 'react'; import { PropType } from '@structured-types/api'; export declare type PropTypeTreeProps = { data: PropType; name?: string; }; export declare const PropTypeTree: FC<PropTypeTreeProps>;