As a newcomer to Type Script, I am curious if there is a way to specify in the interface "IIndex" that SystemStatus is an object with properties Data and DataUrl. Currently, it appears that SystemStatus is undefined.
interface IIndex extends ng.IScope {
TotalRequestedJobCount: number;
TotalScheduledJobCount: number;
SystemStatus: {
Data: any;
DataUrl: string;
}
refreshSystemStatus: EmptyFunc;
}