Browse Source

fix the return type documentation

Sven Czarnian 2 years ago
parent
commit
1d6d0b63e9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/system/system.controller.ts

+ 1 - 1
src/system/system.controller.ts

@@ -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();