diff --git a/package.json b/package.json index 8a908b4..b740c55 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "mstdn", "productName": "Mstdn", - "version": "0.2.3", + "version": "0.2.4", "description": "Tiny web-based mastodon client for your desktop", "main": "main/index.js", "bin": { diff --git a/renderer/plugins.ts b/renderer/plugins.ts index 0b08ea0..efd57d1 100644 --- a/renderer/plugins.ts +++ b/renderer/plugins.ts @@ -3,10 +3,10 @@ import {Config, Account} from '../main/config'; import log from './log'; interface Plugin { - preload?(c: Config, a: Account): void; keymaps?: { [action: string]: (e: KeyboardEvent, c: Config, a: Account) => void; }; + preload?(c: Config, a: Account): void; } interface Plugins { [module_path: string]: Plugin;