From 2ecba48bc82e558b140a9aacaebd54d3fa9f5f05 Mon Sep 17 00:00:00 2001 From: Jeff Dickey <216188+jdxcode@users.noreply.github.com> Date: Tue, 6 Feb 2018 23:12:39 -0800 Subject: [PATCH] fix: added load function --- src/plugin.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugin.ts b/src/plugin.ts index 79d1b881..ba653aa6 100644 --- a/src/plugin.ts +++ b/src/plugin.ts @@ -66,6 +66,7 @@ export interface IPlugin { findCommand(id: string, opts: {must: true}): Command.Class findCommand(id: string, opts?: {must: boolean}): Command.Class | undefined + load(): Promise } const debug = Debug()