UNPKG

@szzbmy/lowcode-cli

Version:

🐇 lowcode-cli is an efficient cli tool for Rabbitpre plugin component secondary development. ❤️

13 lines (12 loc) 253 B
/** * @describe 组件调试 * @author fanyihuo * @since 20210816 */ /// <reference types="react" /> interface IProps { /** 是否纯净模式 */ pure?: boolean; } export default function Debug(props: IProps): JSX.Element | null; export {};