mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-02 20:18:22 +08:00
16 lines
425 B
TypeScript
16 lines
425 B
TypeScript
import { AntdComponent } from './component';
|
|
|
|
import { Locale } from './locale-provider';
|
|
|
|
export interface CSPConfig {
|
|
nonce?: string;
|
|
}
|
|
|
|
export declare class ConfigProvider extends AntdComponent {
|
|
getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
|
|
getPrefixCls: (suffixCls: string, customizePrefixCls?: string) => string;
|
|
renderEmpty: Function;
|
|
csp?: CSPConfig;
|
|
autoInsertSpaceInButton?: boolean;
|
|
}
|