File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change 1
1
import { AntdComponent } from './component' ;
2
- import Vue from 'vue' ;
2
+ import { App , VNodeChild } from 'vue' ;
3
3
4
4
import { Locale } from './locale-provider' ;
5
5
@@ -8,10 +8,13 @@ export interface CSPConfig {
8
8
}
9
9
10
10
export declare class ConfigProvider extends AntdComponent {
11
- getPopupContainer ?: ( triggerNode : HTMLElement , dialogContext ?: Vue | null ) => HTMLElement ;
12
- getPrefixCls : ( suffixCls : string , customizePrefixCls ?: string ) => string ;
13
- renderEmpty : Function ;
14
- csp ?: CSPConfig ;
15
- autoInsertSpaceInButton ?: boolean ;
16
- transformCellText ?: Function ;
11
+ $props : {
12
+ getPopupContainer ?: ( triggerNode : HTMLElement , dialogContext ?: App | null ) => HTMLElement ;
13
+ getPrefixCls ?: ( suffixCls : string , customizePrefixCls ?: string ) => string ;
14
+ renderEmpty ?: Function | VNodeChild | JSX . Element ;
15
+ csp ?: CSPConfig ;
16
+ autoInsertSpaceInButton ?: boolean ;
17
+ transformCellText ?: Function | VNodeChild | JSX . Element ;
18
+ locale : Locale | object ;
19
+ } ;
17
20
}
You can’t perform that action at this time.
0 commit comments