Guest User

Untitled

a guest
Oct 23rd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. package index
  2.  
  3. import com.github.jesty.githubapi.Result
  4. import com.github.jesty.githubapi.User
  5. import kotlin.js.Promise
  6.  
  7. external class GitHub(user: User) {
  8. fun getUser(): GHUser
  9. }
  10.  
  11. external class GHUser {
  12. fun listStarredRepos(): Promise<Result>
  13. }
  14.  
  15. ReferenceError: GitHub is not defined
Add Comment
Please, Sign In to add comment