1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1x 1x 1x | import { HttpServer } from '@nestjs/common'; export class ApplicationReferenceHost { private _applicationRef: HttpServer | any; set applicationRef(applicationRef: any) { this._applicationRef = applicationRef; } get applicationRef(): HttpServer | any { return this._applicationRef; } } |