Skip to content
Snippets Groups Projects
Commit 6b1ddc51 authored by Aya Morisawa's avatar Aya Morisawa
Browse files

Add missing type annotation

parent 2765a3c2
No related merge requests found
......@@ -2,7 +2,7 @@ import * as os from 'os';
import Logger from './logger';
export default class MachineInfo {
static show() {
static show(): void {
const totalmem = (os.totalmem() / 1024 / 1024 / 1024).toFixed(1);
const freemem = (os.freemem() / 1024 / 1024 / 1024).toFixed(1);
let logger = new Logger('Machine');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment