Browse Source

feat: 完善类型描述

es6
iapyang 4 years ago
parent
commit
f8a7e1c8d0
  1. 14
      typescript/base/combination/loader.ts

14
typescript/base/combination/loader.ts

@ -5,7 +5,19 @@ export declare class Loader extends Widget {
static EVENT_CHANGE: string; static EVENT_CHANGE: string;
populate<T>(items: T[]): void; _prevLoad(): void;
_nextLoad(): void;
hasPrev(): boolean;
hasNext(): boolean;
prependItems<T>(items: T[]): void;
addItems<T>(items: T[]): void;
populate(...args: any[]): void;
setNotSelectedValue(...args: any[]): void; setNotSelectedValue(...args: any[]): void;

Loading…
Cancel
Save