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",
"productName": "Mstdn",
"version": "0.2.3",
"version": "0.2.4",
"description": "Tiny web-based mastodon client for your desktop",
"main": "main/index.js",
"bin": {

View File

@ -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;