fx-form-widget
Version:
20 lines (19 loc) • 397 B
TypeScript
import React from 'react';
import './index.less';
interface ColorProps {
schema: any;
onChange: Function;
value: string;
isInit?: boolean;
}
export interface UsageInfoTypes {
allowEdit: number;
companyId: string;
id: number;
prefix: string;
random: string;
state: number;
type: number;
}
declare const Color: React.FC<ColorProps>;
export default Color;