- 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
8 lines
265 B
TypeScript
8 lines
265 B
TypeScript
export type Vector1DType = {
|
|
get: () => number;
|
|
set: (n: Vector1DType | number) => void;
|
|
add: (n: Vector1DType | number) => void;
|
|
subtract: (n: Vector1DType | number) => void;
|
|
};
|
|
export declare function Vector1D(initialValue: number): Vector1DType;
|