matrix-react-sdk
Version:
SDK for matrix.org using React
12 lines (11 loc) • 316 B
TypeScript
import * as React from "react";
interface IProps {
onDigitPress: (string: any) => void;
hasDialAndDelete: boolean;
onDeletePress?: (string: any) => void;
onDialPress?: (string: any) => void;
}
export default class Dialpad extends React.PureComponent<IProps> {
render(): JSX.Element;
}
export {};