forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~FAY/fineui:master to master * commit '89ba3c53e0170cd438651407058f3265637c846a': 声明es6
fay
3 years ago
3 changed files with 48 additions and 0 deletions
@ -0,0 +1,18 @@ |
|||||||
|
import { Widget } from "../../core/widget"; |
||||||
|
|
||||||
|
export declare class DirectionPager extends Widget { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_CHANGE: string; |
||||||
|
getVPage(): number; |
||||||
|
getHPage(): number; |
||||||
|
setVPage(v: number):void; |
||||||
|
setHPage(v: number):void; |
||||||
|
hasVPrev(): boolean; |
||||||
|
hasVNext(): boolean; |
||||||
|
hasHPrev(): boolean; |
||||||
|
hasHNext(): boolean; |
||||||
|
setHPagerVisible(v: boolean): void; |
||||||
|
setVPagerVisible(v: boolean): void; |
||||||
|
clear(): void; |
||||||
|
populate(): void; |
||||||
|
} |
@ -0,0 +1,28 @@ |
|||||||
|
import { Widget } from "../../core/widget"; |
||||||
|
|
||||||
|
export declare class DirectionPager extends Widget { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_CHANGE: string; |
||||||
|
|
||||||
|
|
||||||
|
getVPage(): number; |
||||||
|
getHPage(): number; |
||||||
|
|
||||||
|
setVPage(v: number):void; |
||||||
|
setHPage(v: number):void; |
||||||
|
|
||||||
|
hasVPrev(): boolean; |
||||||
|
|
||||||
|
hasVNext(): boolean; |
||||||
|
|
||||||
|
hasHPrev(): boolean; |
||||||
|
|
||||||
|
hasHNext(): boolean; |
||||||
|
|
||||||
|
setHPagerVisible(v: boolean): void; |
||||||
|
setVPagerVisible(v: boolean): void; |
||||||
|
|
||||||
|
clear(): void; |
||||||
|
|
||||||
|
populate(): void; |
||||||
|
} |
Loading…
Reference in new issue