13 lines
362 B
TypeScript
13 lines
362 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import type { TimeTrackingData } from './TimeTrackingData';
|
|
import type { UserSchema } from './UserSchema';
|
|
export type TimeTrackingRecord = {
|
|
user: UserSchema;
|
|
totalAmount: number;
|
|
data: Array<TimeTrackingData>;
|
|
};
|
|
|