splitwise
Version:
A TypeScript SDK for the Splitwise API.
15 lines • 526 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Notifications = void 0;
const base_js_1 = require("./base.js");
class Notifications extends base_js_1.BaseResource {
async list(params, overrides) {
return this.http.get('/get_notifications', {
query: params !== undefined ? { ...params } : undefined,
unwrapKey: 'notifications',
...overrides,
});
}
}
exports.Notifications = Notifications;
//# sourceMappingURL=notifications.js.map