UNPKG

express-idempotency

Version:

Add idempotency to your express route, effortlessly, the way you want it.

14 lines (13 loc) 459 B
"use strict"; // Copyright (c) Ville de Montreal. All rights reserved. // Licensed under the MIT license. // See LICENSE file in the project root for full license information. Object.defineProperty(exports, "__esModule", { value: true }); exports.IdempotencyResponse = void 0; /** * Idempotency response. * Keep a reference of the response (ex: http status) and the body. */ class IdempotencyResponse { } exports.IdempotencyResponse = IdempotencyResponse;