chore: fix some error declaration (#3099)

This commit is contained in:
feng zhi hao 2016-09-21 09:27:58 +08:00 committed by Benjy Cui
parent 9d9185127c
commit a4be70334d
2 changed files with 2 additions and 1 deletions

View File

@ -10,6 +10,7 @@ export interface CardProps {
style?: React.CSSProperties; style?: React.CSSProperties;
loading?: boolean; loading?: boolean;
children?: any; children?: any;
id?: string;
} }
export default (props: CardProps) => { export default (props: CardProps) => {

View File

@ -69,7 +69,7 @@ export type WrappedFormUtils = {
rules?: Array<any>; rules?: Array<any>;
/** 是否和其他控件互斥,特别用于 Radio 单选控件 */ /** 是否和其他控件互斥,特别用于 Radio 单选控件 */
exclusive?: boolean; exclusive?: boolean;
}): Array<any>; }): (node: React.ReactNode) => React.ReactNode;
} }
export interface FormComponentProps { export interface FormComponentProps {