mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 18:48:45 +08:00
11 lines
211 B
TypeScript
11 lines
211 B
TypeScript
declare module 'uncontrollable' {
|
|
function uncontrollable<
|
|
T extends Raect.ComponentType<any>,
|
|
P extends {
|
|
[propName: string]: any;
|
|
}
|
|
>(arg: T, config: P): T;
|
|
|
|
export = uncontrollable;
|
|
}
|