mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 02:05:45 +03:00
extract type
This commit is contained in:
parent
725b7f8950
commit
49f7170d95
1 changed files with 7 additions and 1 deletions
|
@ -86,6 +86,12 @@ interface IProps {
|
|||
// TODO: Account for https://github.com/vector-im/riot-web/issues/14179
|
||||
}
|
||||
|
||||
// TODO: Use re-resizer's NumberSize when it is exposed as the type
|
||||
interface ResizeDelta {
|
||||
width: number,
|
||||
height: number,
|
||||
}
|
||||
|
||||
type PartialDOMRect = Pick<DOMRect, "left" | "top" | "height">;
|
||||
|
||||
interface IState {
|
||||
|
@ -161,7 +167,7 @@ export default class RoomSublist2 extends React.Component<IProps, IState> {
|
|||
e: MouseEvent | TouchEvent,
|
||||
travelDirection: Direction,
|
||||
refToElement: HTMLDivElement,
|
||||
delta: { width: number, height: number }, // TODO: Use re-resizer's NumberSize when it is exposed as the type
|
||||
delta: ResizeDelta,
|
||||
) => {
|
||||
// Do some sanity checks, but in reality we shouldn't need these.
|
||||
if (travelDirection !== "bottom") return;
|
||||
|
|
Loading…
Reference in a new issue