Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export function ExpressRouter(target: Type, targetKey: string, descriptor: TypedPropertyDescriptor | number) {
return Inject(ExpressRouter)(target, targetKey, descriptor);
}
export function HttpsServer(target: Type, targetKey: string, descriptor: TypedPropertyDescriptor | number) {
return Inject(HttpsServer)(target, targetKey, descriptor);
}
export function ExpressApplication(target: Type, targetKey: string, descriptor: TypedPropertyDescriptor | number) {
return Inject(ExpressApplication)(target, targetKey, descriptor);
}
export function HttpServer(target: Type, targetKey: string, descriptor: TypedPropertyDescriptor | number) {
return Inject(HttpServer)(target, targetKey, descriptor);
}