Strict done!!
This commit is contained in:
@@ -16,7 +16,7 @@ const serviceName = 'DaybookService';
|
||||
export class DaybookService {
|
||||
constructor(private http: HttpClient, private log: ErrorLoggerService) {}
|
||||
|
||||
list(startDate: string, finishDate): Observable<Daybook> {
|
||||
list(startDate: string | null, finishDate: string | null): Observable<Daybook> {
|
||||
const startDateWithSlash = startDate ? `/${startDate}` : '';
|
||||
const finishDateWithSlash = finishDate ? `/${finishDate}` : '';
|
||||
return <Observable<Daybook>>(
|
||||
|
||||
Reference in New Issue
Block a user