UNPKG
@kisstar/rc-ui
Version:
latest (0.2.0)
0.2.0
UI component library built with React Hooks.
dongwanhong.gitee.io/rc-ui
kisstar/rc-ui
@kisstar/rc-ui
/
dist
/
components
/
config-provider
/
context.d.ts
7 lines
(6 loc)
•
292 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
React
from
'react'
;
export
interface
ConfigConsumerProps
{
getPrefixCls
:
(
suffixCls
:
string
,
customizePrefixCls
?:
string
) =>
string
; }
export
declare
const
ConfigContext
:
React
.
Context
<
ConfigConsumerProps
>;
export
declare
const
ConfigConsumer
:
React
.
Consumer
<
ConfigConsumerProps
>;