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