jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
12 lines (11 loc) • 369 B
TypeScript
import React from 'react';
import type { FormControlProps } from '../types';
declare class UUIDControl extends React.Component<FormControlProps, any> {
constructor(props: FormControlProps);
componentDidUpdate(props: FormControlProps): void;
setValue(): void;
render(): null;
}
export declare class UUIDControlRenderer extends UUIDControl {
}
export {};