From 018a5168a5eae50a80996d2679119cafcf1eff64 Mon Sep 17 00:00:00 2001 From: Ben Lesh Date: Tue, 14 May 2019 08:18:27 -0700 Subject: [PATCH] =?UTF-8?q?refactor(ivy):=20mark=20=CE=94defineInjectable?= =?UTF-8?q?=20as=20codeGenApi.=20(#30362)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR Close #30362 --- packages/core/src/di/interface/defs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/di/interface/defs.ts b/packages/core/src/di/interface/defs.ts index 593e16a06b..d58957090a 100644 --- a/packages/core/src/di/interface/defs.ts +++ b/packages/core/src/di/interface/defs.ts @@ -129,7 +129,7 @@ export interface InjectorTypeWithProviders { * * `factory` gives the zero argument function which will create an instance of the injectable. * The factory can call `inject` to access the `Injector` and request injection of dependencies. * - * @publicApi + * @codeGenApi */ export function ΔdefineInjectable(opts: { providedIn?: Type| 'root' | 'any' | null,