registerAsync()

in src/builder/ContainerBuilder.js [26:33]


	registerAsync(operator) {
		const registration = new Registration(operator);
		if (this._defaultOptions) {
			registration.withOptions(this._defaultOptions);
		}
		this._registrations.push(registration);
		return registration;
	}