import { IndexedHoursInterface } from './IndexedHoursInterface';
export interface IndexInterface {
    [day: number]: IndexedHoursInterface;
}
