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;
loading?: boolean;
children?: any;
id?: string;
}
export default (props: CardProps) => {

View File

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