Guest User

Untitled

a guest
May 27th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. // ...
  2.  
  3. const login = promisify(mage.auth.login);
  4.  
  5. export class PlayerModule {
  6. // ...
  7.  
  8. async login(state: mage.core.IState, username: string, password: string) {
  9. return login(state, username, password);
  10. }
  11. }
Add Comment
Please, Sign In to add comment