blob: 4db3c111c340b8e673e08a70bdae65cf5d63e70e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
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 };
|