[+] Create token interface

This commit is contained in:
Hykilpikonna
2019-10-12 20:11:56 -04:00
parent e28f68aae3
commit 353a623e5f
+9
View File
@@ -55,6 +55,15 @@ export interface Course
assignments: Assignment[]
}
/**
* A login token
*/
export interface Token
{
token: string,
user: string
}
@Component({
components: {Login, Navigation, Overall},
})