@thiagoveras/toolbelt-api-test
Advanced tools
Comparing version 1.1.0 to 1.2.0
export declare abstract class Display { | ||
private static dateDAO; | ||
static time(): void; | ||
static date(): void; | ||
static time(): string; | ||
static date(): string; | ||
} |
@@ -6,6 +6,6 @@ "use strict"; | ||
static time() { | ||
console.log(this.dateDAO.toLocaleTimeString()); | ||
return this.dateDAO.toLocaleTimeString(); | ||
} | ||
static date() { | ||
console.log(this.dateDAO.toLocaleDateString()); | ||
return this.dateDAO.toLocaleDateString(); | ||
} | ||
@@ -12,0 +12,0 @@ } |
{ | ||
"name": "@thiagoveras/toolbelt-api-test", | ||
"version": "1.1.0", | ||
"version": "1.2.0", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "build/index.js", |
1611