File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change 1
1
export interface Config {
2
- testIdAttribute : string ;
3
- asyncWrapper ( cb : ( ...args : any [ ] ) => any ) : Promise < any > ;
4
- eventWrapper ( cb : ( ...args : any [ ] ) => any ) : void ;
5
- asyncUtilTimeout : number ;
6
- defaultHidden : boolean ;
7
- throwSuggestions : boolean ;
2
+ testIdAttribute : string
3
+ asyncWrapper ( cb : ( ...args : any [ ] ) => any ) : Promise < any >
4
+ eventWrapper ( cb : ( ...args : any [ ] ) => any ) : void
5
+ asyncUtilTimeout : number
6
+ defaultHidden : boolean
7
+ throwSuggestions : boolean
8
8
}
9
9
10
10
export interface ConfigFn {
11
- ( existingConfig : Config ) : Partial < Config > ;
11
+ ( existingConfig : Config ) : Partial < Config >
12
12
}
13
13
14
- export function configure ( configDelta : Partial < Config > | ConfigFn ) : void ;
14
+ export function configure ( configDelta : Partial < Config > | ConfigFn ) : void
15
+ export function getConfig ( ) : Config
You can’t perform that action at this time.
0 commit comments