Having some issues with my code here. I've defined a class and an interface, but Visual Studio is giving me an error saying it can't find the name 'RouteInterface'. I'm stumped as to why.
import {Student} from './student';
export interface RouteInterface{
id: number;
startTime: Date;
endTime: Date;
neighborhood: string;
students: Student[];
tooltip: string;
tooltipcls: string;
icon: string;
}
export class Route extends RouteInterface {
id: number;
startTime: Date;
endTime: Date;
neighborhood: string;
students: Student[];
tooltip: string;
tooltipcls: string;
icon: string;
}