Add semi-colons

This commit is contained in:
Nathan Shively-Sanders
2018-12-06 11:39:44 -08:00
parent c9ed1594d6
commit d00ce6dfdf

View File

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