UNPKG

kraken

Version:

Plug into the power and speed of Kraken.io Image Optimizer

19 lines (17 loc) 377 B
/** * Provides Kraken.io credentials for API * * @class KrakenAuth */ class KrakenAuth { /** * Constructs a new KrakenAuth instance * @param {string} key Kraken.io API key * @param {string} secret Kraken.io API secret */ constructor(key, secret) { this.api_key = key this.api_secret = secret } } module.exports = KrakenAuth