From bc7220f7950821ac63fb3907bbe6d63119597214 Mon Sep 17 00:00:00 2001 From: iapyang Date: Tue, 19 May 2020 17:07:53 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E7=B1=BB=E5=9E=8B=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/base/pane.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/typescript/base/pane.ts b/typescript/base/pane.ts index c5e2f0b87..bb042a767 100644 --- a/typescript/base/pane.ts +++ b/typescript/base/pane.ts @@ -1,11 +1,11 @@ import { _Widget } from "../core/widget"; export interface _Pane extends _Widget { - _assertTip: (..._args: any[]) => void; - loading: (..._args: any[]) => void; - loaded: (..._args: any[]) => void; - check: (..._args: any[]) => void; - populate: (items: any[]) => void; + _assertTip(..._args: any[]): void; + loading(..._args: any[]): void; + loaded(..._args: any[]): void; + check(..._args: any[]): void; + populate(...args: any[]): void; } export interface _PaneStatic {