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 11import { AntdComponent } from './component' ;
2- import Vue from 'vue' ;
2+ import { App , VNodeChild } from 'vue' ;
33
44import { Locale } from './locale-provider' ;
55
@@ -8,10 +8,13 @@ export interface CSPConfig {
88}
99
1010export 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+ } ;
1720}
You can’t perform that action at this time.
0 commit comments