Merge pull request #7 from Yiin/patch-3

Add default export
This commit is contained in:
Micah Allen 2019-04-02 19:59:01 -04:00 committed by GitHub
commit 14fda2a895
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -333,3 +333,13 @@ export function callBrowser(browser: Browser, name: string, args?: any): Promise
const id = util.uid(); const id = util.uid();
return _callBrowser(id, browser, name, args, {}); return _callBrowser(id, browser, name, args, {});
} }
export default {
register,
unregister,
call,
callServer,
callClient,
callBrowsers,
callBrowser
};