Files
aresv2/public/assets/quill/core/utils/scrollRectIntoView.d.ts
Beyhan Oğur 4362c3b83f first commit
2026-04-26 21:33:39 +03:00

9 lines
214 B
TypeScript

export type Rect = {
top: number;
right: number;
bottom: number;
left: number;
};
declare const scrollRectIntoView: (root: HTMLElement, targetRect: Rect) => void;
export default scrollRectIntoView;