Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision

Target

Select target project
  • Dojo_Project_Nguyen/backend/dojobackendapi
  • dojo_project/projects/backend/dojobackendapi
2 results
Select Git revision
Show changes
import Session from '../../controllers/Session'; import Session from '../../controllers/Session';
import { Enonce, Exercice } from '../DatabaseTypes'; import { Assignment, Exercise } from '../DatabaseTypes';
// to make the file a module and avoid the TypeScript error // to make the file a module and avoid the TypeScript error
export {}; export {};
...@@ -9,7 +9,7 @@ declare global { ...@@ -9,7 +9,7 @@ declare global {
export interface Request { export interface Request {
session: Session, session: Session,
boundParams: { boundParams: {
enonce: Enonce | undefined, exercice: Exercice | undefined assignment: Assignment | undefined, exercise: Exercise | undefined
} }
} }
} }
......