@vendure/core
Version:
A modern, headless ecommerce framework
19 lines • 613 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.StockLocationEvent = void 0;
const vendure_entity_event_1 = require("../vendure-entity-event");
/**
* @description
* This event is fired whenever a {@link StockLocation} is added, updated
* or deleted.
*
* @docsCategory events
* @docsPage Event Types
*/
class StockLocationEvent extends vendure_entity_event_1.VendureEntityEvent {
constructor(ctx, entity, type, input) {
super(entity, type, ctx, input);
}
}
exports.StockLocationEvent = StockLocationEvent;
//# sourceMappingURL=stock-location-event.js.map