1

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

Rom1
  • 3,167
  • 2
  • 22
  • 39

1 Answers1

2

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).

Community
  • 1
  • 1
Stephen Nelson
  • 939
  • 1
  • 7
  • 22