diff --git a/tools/public_api_guard/core/core.d.ts b/tools/public_api_guard/core/core.d.ts index 6524dde4a5..415869dac3 100644 --- a/tools/public_api_guard/core/core.d.ts +++ b/tools/public_api_guard/core/core.d.ts @@ -382,10 +382,10 @@ export interface Injectable { export declare const Injectable: InjectableDecorator; export interface InjectableDecorator { - (): any; + (): TypeDecorator; (options?: { providedIn: Type | 'root' | null; - } & InjectableProvider): any; + } & InjectableProvider): TypeDecorator; new (): Injectable; new (options?: { providedIn: Type | 'root' | null;