- Added Custom Exams tab showing all exams from Generation page - Displays title, module badges, duration, and status - Added Create Exam button - Kept Exam Sessions tab for institutional sessions - Search filters across exams Made-with: Cursor
13 lines
280 B
TypeScript
13 lines
280 B
TypeScript
export type NodeRectType = {
|
|
top: number;
|
|
right: number;
|
|
bottom: number;
|
|
left: number;
|
|
width: number;
|
|
height: number;
|
|
};
|
|
export type NodeRectsType = {
|
|
measure: (node: HTMLElement) => NodeRectType;
|
|
};
|
|
export declare function NodeRects(): NodeRectsType;
|