UNPKG

matrix-react-sdk

Version:
20 lines (19 loc) 466 B
import React from "react"; interface IProps { roomId: string | null; minWidth: number; maxWidth: number; } interface IState { width: number; IRCLayoutRoot: HTMLElement | null; } export default class IRCTimelineProfileResizer extends React.Component<IProps, IState> { constructor(props: IProps); componentDidMount(): void; private dragFunc; private updateCSSWidth; private onMoueUp; render(): React.ReactNode; } export {};