jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
19 lines (18 loc) • 528 B
TypeScript
/**
* @file 无界容器组件
*/
import React from 'react';
import type { WujieProps } from './types';
export default class Wujie extends React.Component<WujieProps> {
static defaultProps: Partial<WujieProps>;
wujie: any;
wujieRef: React.RefObject<HTMLDivElement>;
constructor(props: WujieProps);
componentDidMount(): void;
getOptPorps: () => any;
clorizeElement: () => void;
handleWujie(wujie: any): void;
render(): React.ReactNode;
}
export declare class WujieRenderer extends Wujie {
}