Skip to content

Commit

Permalink
Expose the UserProfile flow type to the API
Browse files Browse the repository at this point in the history
  • Loading branch information
PatriceVignola committed Jun 18, 2018
1 parent 2cdee36 commit 5691a91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "skype-web-api",
"version": "0.2.0",
"version": "0.3.0",
"description": "An unofficial Skype API for JavaScript.",
"main": "./lib/index.js",
"files": [
Expand Down
3 changes: 3 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import getUserProfiles from './api/getUserProfiles';
import login from './api/login';
import sendFile from './api/sendFile';
import sendMessage from './api/sendMessage';
import type {UserProfile} from './api/formatUserProfile';

import type {Tokens} from './api/login';

Expand Down Expand Up @@ -70,4 +71,6 @@ export {
sendMessage,
};

export type {UserProfile};

export default SkypeWebApi;

0 comments on commit 5691a91

Please sign in to comment.