fix the return type documentation

This commit is contained in:
Sven Czarnian
2022-11-04 13:13:35 +01:00
parent e75d872173
commit 1d6d0b63e9

View File

@@ -8,7 +8,7 @@ export class SystemController {
@Get('/timestamp')
@ApiResponse({
description: 'The current ZULU timestamp of the system',
type: String,
type: Number,
})
async timestamp(): Promise<number> {
return new Date().getTime();