send press key to tabs

This commit is contained in:
Shin'ya Ueoka 2018-02-11 15:40:34 +09:00
parent cf03d278eb
commit 3f8bbe11d9
11 changed files with 153 additions and 30 deletions

View file

@ -0,0 +1,12 @@
import { TABS_CREATE } from '../shared/messages';
import * as ipc from './ipc';
const create = (windowId, url) => {
return ipc.send({
type: TABS_CREATE,
windowId,
url,
});
};
export { create };