From f8a7e1c8d0112fea8ae41dba2e00471eef7c4dfc Mon Sep 17 00:00:00 2001 From: iapyang Date: Mon, 15 Mar 2021 15:56:41 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=AE=8C=E5=96=84=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/base/combination/loader.ts | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/typescript/base/combination/loader.ts b/typescript/base/combination/loader.ts index 604569a71..c3df4e9d9 100644 --- a/typescript/base/combination/loader.ts +++ b/typescript/base/combination/loader.ts @@ -5,7 +5,19 @@ export declare class Loader extends Widget { static EVENT_CHANGE: string; - populate(items: T[]): void; + _prevLoad(): void; + + _nextLoad(): void; + + hasPrev(): boolean; + + hasNext(): boolean; + + prependItems(items: T[]): void; + + addItems(items: T[]): void; + + populate(...args: any[]): void; setNotSelectedValue(...args: any[]): void;