/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import { PropertyTransform } from './transform_api'; /** * Transform that will automatically add an `@Input` decorator for all signal * inputs in Angular classes. The decorator will capture metadata of the signal * input, derived from the `input()/input.required()` initializer. * * This transform is useful for JIT environments where signal inputs would like to be * used. e.g. for Angular CLI unit testing. In such environments, signal inputs are not * statically retrievable at runtime. JIT compilation needs to know about all possible inputs * before instantiating directives. A decorator exposes this information to the class without * the class needing to be instantiated. */ export declare const signalInputsTransform: PropertyTransform;