UNPKG

transbank-sdk

Version:
11 lines (10 loc) 212 B
class RequestBase { constructor(endpoint, method) { this.endpoint = endpoint; this.method = method; } toJson() { return JSON.stringify({}); } } export default RequestBase;