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;