Minor improvements to Clockify-Node

This commit is contained in:
Jan Oberhauser
2020-10-04 16:32:12 +02:00
parent 3a73493aeb
commit a25229ace9
8 changed files with 30 additions and 39 deletions

View File

@@ -1,4 +1,4 @@
import {ITimeIntervalDto} from "./CommonDtos";
import { ITimeIntervalDto } from './CommonDtos';
interface ITimeEntriesDurationRequest {
start: string;
@@ -18,7 +18,7 @@ export interface ITimeEntryRequest {
timeInterval: ITimeEntriesDurationRequest;
workspaceId: string;
isLocked: boolean;
};
}
export interface ITimeEntryDto {
billable: boolean;
@@ -32,4 +32,3 @@ export interface ITimeEntryDto {
userId: string;
workspaceId: string;
}