From d00ce6dfdf92472f320222dab32d8a8eb149b402 Mon Sep 17 00:00:00 2001 From: Nathan Shively-Sanders <293473+sandersn@users.noreply.github.com> Date: Thu, 6 Dec 2018 11:39:44 -0800 Subject: [PATCH] Add semi-colons --- types/shelljs/make.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/types/shelljs/make.d.ts b/types/shelljs/make.d.ts index 0db5320b72..ca4c2b6135 100644 --- a/types/shelljs/make.d.ts +++ b/types/shelljs/make.d.ts @@ -1,9 +1,9 @@ import * as shelljs from './'; declare global { interface Target { - (...args: any[]): void, - result?: any, - done?: boolean + (...args: any[]): void; + result?: any; + done?: boolean; } const target: { all?: Target;