blob: 074eb97f2b60613c30915d0465c390f583bfe5c9 [file] [log] [blame]
Milo Lin26b2cbb2022-03-26 17:35:20 -07001import {Component, OnInit} from '@angular/core';
2import {Builder, ByteBuffer} from 'flatbuffers';
Philipp Schraderd7efa2b2023-02-17 21:15:13 -08003import {ErrorResponse} from '../../webserver/requests/messages/error_response_generated';
Milo Lin26b2cbb2022-03-26 17:35:20 -07004
5@Component({
6 selector: 'shift-schedule',
7 templateUrl: './shift_schedule.ng.html',
8 styleUrls: ['../common.css', './shift_schedule.component.css'],
9})
10export class ShiftsComponent {
11 progressMessage: string = '';
12 errorMessage: string = '';
13 // used to calculate shift blocks from starting match to ending match
14 numMatches: number[] = [20, 40, 60, 80, 100, 120, 140, 160, 180, 200];
15}