From 32716f562c21adc5a023628e43143c47a41c326e Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Mon, 6 Feb 2023 09:49:36 -0700 Subject: [PATCH] fix: update Manifest type --- src/interfaces/manifest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces/manifest.ts b/src/interfaces/manifest.ts index 7790f0488..354a0d8ba 100644 --- a/src/interfaces/manifest.ts +++ b/src/interfaces/manifest.ts @@ -1,6 +1,6 @@ import {Command} from '../command' -export interface Manifest { +export type Manifest = { version: string; commands: {[id: string]: Command.Cached}; }