Reputation: 3207
Mostly, the title says it all, but I could not find any answer in the documentation of the library.
Specifically, can I use said library from Clojurescript ?
Cheers
Upvotes: 1
Views: 76
Reputation: 939
Short answer: yes, you can.
You should use externs to describe the functions you want to use then use (:import ..) within your clojurescript code to let the compiler know that you're referring to a javascript library.
You don't need to do anything special for the Google API client, the same principles apply for using any javascript library (see also).
Upvotes: 2