Selaa lähdekoodia

fix the return type documentation

Sven Czarnian 2 vuotta sitten
vanhempi
commit
1d6d0b63e9
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      src/system/system.controller.ts

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

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