forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~ALAN/fineui:master to master * commit '14116570ff4d724fb8fdd0dc8b061942ed470c31': 移除无用代码 KERNEL-6537 fineui中非标准写法补齐es6
alan
4 years ago
9 changed files with 80 additions and 23 deletions
@ -1,7 +1,13 @@ |
|||||||
import { _Single } from "../single"; |
import { Single, _Single } from "../single"; |
||||||
|
|
||||||
export interface _Trigger extends _Single { |
export interface _Trigger extends _Single { |
||||||
setKey(..._args: any[]): void; |
setKey(..._args: any[]): void; |
||||||
|
|
||||||
getKey(): string; |
getKey(): string; |
||||||
} |
} |
||||||
|
|
||||||
|
export declare class Trigger extends Single { |
||||||
|
setKey(..._args: any[]): void; |
||||||
|
|
||||||
|
getKey(): string; |
||||||
|
} |
||||||
|
@ -1,5 +1,9 @@ |
|||||||
import { _Pane } from "../../base/pane"; |
import { _Pane, Pane } from "../../base/pane"; |
||||||
|
|
||||||
export interface _LoadingPane extends _Pane { |
export interface _LoadingPane extends _Pane { |
||||||
__loaded: (...args: any[]) => void; |
__loaded: (...args: any[]) => void; |
||||||
} |
} |
||||||
|
|
||||||
|
export declare class LoadingPane extends Pane { |
||||||
|
__loaded: (...args: any[]) => void; |
||||||
|
} |
||||||
|
@ -1,5 +1,8 @@ |
|||||||
import { _Action } from "./action"; |
import { _Action, Action } from "./action"; |
||||||
|
|
||||||
export interface _ShowAction extends _Action { |
export interface _ShowAction extends _Action { |
||||||
|
|
||||||
} |
} |
||||||
|
export declare class ShowAction extends Action { |
||||||
|
|
||||||
|
} |
||||||
|
@ -1,4 +1,8 @@ |
|||||||
import { _Behavior } from "./behavior"; |
import { _Behavior, Behavior } from "./behavior"; |
||||||
export interface _HighlightBehavior extends _Behavior { |
export interface _HighlightBehavior extends _Behavior { |
||||||
|
|
||||||
} |
} |
||||||
|
|
||||||
|
export declare class HighlightBehavior extends Behavior { |
||||||
|
|
||||||
|
} |
||||||
|
@ -1,4 +1,8 @@ |
|||||||
import { _Behavior } from "./behavior"; |
import { _Behavior, Behavior } from "./behavior"; |
||||||
export interface _RedMarkBehavior extends _Behavior { |
export interface _RedMarkBehavior extends _Behavior { |
||||||
|
|
||||||
} |
} |
||||||
|
|
||||||
|
export declare class RedMarkBehavior extends Behavior { |
||||||
|
|
||||||
|
} |
||||||
|
Loading…
Reference in new issue