durable-functions
Version:
Durable Functions library for Node.js Azure Functions
11 lines • 386 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.EntityStateResponse = void 0;
class EntityStateResponse {
constructor(entityExists, entityState) {
this.entityExists = entityExists;
this.entityState = entityState;
}
}
exports.EntityStateResponse = EntityStateResponse;
//# sourceMappingURL=EntityStateResponse.js.map
;