From 8f3399bab75d0b30b9c34f466afe1e3b47abc3f0 Mon Sep 17 00:00:00 2001 From: ChenX Date: Wed, 4 Mar 2020 17:06:47 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/UI/Components/Board/CommonBoardOption.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/UI/Components/Board/CommonBoardOption.tsx b/src/UI/Components/Board/CommonBoardOption.tsx index 4b29ff8ce..620507d15 100644 --- a/src/UI/Components/Board/CommonBoardOption.tsx +++ b/src/UI/Components/Board/CommonBoardOption.tsx @@ -27,8 +27,8 @@ export interface IRectDrillOption export interface ICommonOptionProps { _CurrentBoard: Board; - setBrConfig?(); - handleComfirmOption?(); + setBrConfig?: () => void; + handleComfirmOption?: () => void; _ConfigOption?: SingleBoardOption; _ProcessOption?: BoardProcessOption; _GrooveOption?: IGrooveOption; @@ -37,7 +37,7 @@ export interface ICommonOptionProps canModeling?: IObservableValue; _IsSpecialBoard?: IObservableValue; otherBoardData: { [key: string]: any; }; - handleChangeCurrentBoard?(br: Board); + handleChangeCurrentBoard?: (br: Board) => void; uiConfigOption?: IUiOption; }