From 4b04c5bc1f461a6b05318ef7d648b48eed1ced39 Mon Sep 17 00:00:00 2001 From: Jeff Dickey <216188+jdxcode@users.noreply.github.com> Date: Sun, 28 Jan 2018 12:20:11 -0800 Subject: [PATCH] fix: use pluginName instead --- src/command.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/command.ts b/src/command.ts index 61dbc668..35ffaac8 100644 --- a/src/command.ts +++ b/src/command.ts @@ -7,13 +7,7 @@ export interface ICachedCommand { aliases: string[] description?: string usage?: string - plugin?: { - name: string - version: string - type: string - root: string - tag?: string - } + pluginName?: string help?: string load(): Promise }