mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 11:07:52 +08:00
9 lines
190 B
TypeScript
9 lines
190 B
TypeScript
declare module 'uncontrollable' {
|
|
export function uncontrollable<
|
|
T extends React.ComponentType<any>,
|
|
P extends {
|
|
[propName: string]: any;
|
|
}
|
|
>(arg: T, config: P): T;
|
|
}
|