semantic-ui-react
Version:
The official Semantic-UI-React integration.
21 lines (15 loc) • 368 B
TypeScript
import * as React from 'react';
export interface RefProps {
[key: string]: any;
/** Primary content. */
children?: React.ReactNode;
/**
* Called when componentDidMount.
*
* @param {HTMLElement} node - Referred node.
*/
innerRef?: (node: HTMLElement) => void;
}
declare class Ref extends React.Component<RefProps, {}> {
}
export default Ref;