forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~DAILER/fineui:es6 to es6 * commit 'b51db2816bf577b1a3eabfc64c9b124f6842421d': updatees6
Dailer-刘荣歆
1 year ago
7 changed files with 14 additions and 4 deletions
@ -1,11 +1,13 @@ |
|||||||
import { Controller } from "./controller"; |
import { Controller } from "./controller"; |
||||||
|
|
||||||
export declare class PopoverController extends Controller { |
export declare class PopoverController extends Controller { |
||||||
create<T>(name: string, from?: any, op?: any, context?: any): T; |
create(name: string, options: any, context?: any): PopoverController; |
||||||
|
|
||||||
open(name: string): PopoverController; |
open(name: string): PopoverController; |
||||||
|
|
||||||
close(name: string): PopoverController; |
close(name: string): PopoverController; |
||||||
|
|
||||||
|
remove(name: string): PopoverController; |
||||||
|
|
||||||
removeAll(): void; |
removeAll(): void; |
||||||
} |
} |
||||||
|
@ -0,0 +1,3 @@ |
|||||||
|
export declare function jsonDecode(text: string): any; |
||||||
|
|
||||||
|
export declare function jsonEncode(json: any): any; |
Loading…
Reference in new issue