react-qml
Version:
18 lines (17 loc) • 363 B
TypeScript
import React from 'react';
export declare type Props = {
populate?: any;
add?: any;
move?: any;
} & {
[key: string]: any;
};
declare class Row extends React.Component<Props> {
private controlRef;
private populateRef;
private addRef;
private moveRef;
componentDidUpdate(): void;
render(): JSX.Element;
}
export default Row;