@prism-engineer/router
Version:
Type-safe Express.js router with automatic client generation
17 lines • 532 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.someOtherExport = exports.invalidRoute = exports.notARoute = void 0;
// This file intentionally has malformed route exports for testing error handling
exports.notARoute = {
path: '/malformed',
// Missing method and handler
};
exports.invalidRoute = {
method: 'GET',
// Missing path and handler
};
// This is a valid object but not a route
exports.someOtherExport = {
data: 'not a route'
};
//# sourceMappingURL=malformed.js.map