From ac0559c6fad527ab00d9009a42919701fb6e0b83 Mon Sep 17 00:00:00 2001 From: iapyang Date: Tue, 19 May 2020 16:40:47 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E6=9B=B4=E6=96=B0=E6=8F=90?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/base/pane.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/typescript/base/pane.ts b/typescript/base/pane.ts index 75c3fc9f0..c5e2f0b87 100644 --- a/typescript/base/pane.ts +++ b/typescript/base/pane.ts @@ -5,6 +5,7 @@ export interface _Pane extends _Widget { loading: (..._args: any[]) => void; loaded: (..._args: any[]) => void; check: (..._args: any[]) => void; + populate: (items: any[]) => void; } export interface _PaneStatic {