- 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
14 lines
611 B
TypeScript
14 lines
611 B
TypeScript
import { Vector1DType } from './Vector1d.js';
|
|
export type ScrollBodyType = {
|
|
direction: () => number;
|
|
duration: () => number;
|
|
velocity: () => number;
|
|
seek: () => ScrollBodyType;
|
|
settled: () => boolean;
|
|
useBaseFriction: () => ScrollBodyType;
|
|
useBaseDuration: () => ScrollBodyType;
|
|
useFriction: (n: number) => ScrollBodyType;
|
|
useDuration: (n: number) => ScrollBodyType;
|
|
};
|
|
export declare function ScrollBody(location: Vector1DType, offsetLocation: Vector1DType, previousLocation: Vector1DType, target: Vector1DType, baseDuration: number, baseFriction: number): ScrollBodyType;
|