Files
ares/public/assets/quill/core/utils/scrollRectIntoView.d.ts
Beyhan Oğur 4d92991817 first commit
2026-04-26 21:30:42 +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;