/**
 *  @module     RIPCreds
 *  @overview   Defines the credentials required by the Rocket in Pocket API
 * 
 *  @author     Animesh Mishra <hello@animesh.ltd>
 *  @copyright  © 2018 Animesh Ltd. All Rights Reserved.
 */

/** Rocket in Pocket API access credentials */
export interface RIPCreds {
    baseURL: string
    merchantKey: string,
    merchantID: string
}