1
0
mirror of https://github.com/rhysd/Mstdn.git synced 2025-01-21 20:52:11 +01:00
This commit is contained in:
rhysd 2017-05-01 18:15:13 +09:00
parent 754ca9e7c1
commit 777d96e92e
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "mstdn", "name": "mstdn",
"productName": "Mstdn", "productName": "Mstdn",
"version": "0.2.3", "version": "0.2.4",
"description": "Tiny web-based mastodon client for your desktop", "description": "Tiny web-based mastodon client for your desktop",
"main": "main/index.js", "main": "main/index.js",
"bin": { "bin": {

View File

@ -3,10 +3,10 @@ import {Config, Account} from '../main/config';
import log from './log'; import log from './log';
interface Plugin { interface Plugin {
preload?(c: Config, a: Account): void;
keymaps?: { keymaps?: {
[action: string]: (e: KeyboardEvent, c: Config, a: Account) => void; [action: string]: (e: KeyboardEvent, c: Config, a: Account) => void;
}; };
preload?(c: Config, a: Account): void;
} }
interface Plugins { interface Plugins {
[module_path: string]: Plugin; [module_path: string]: Plugin;