| 34 | } |
| 35 | |
| 36 | export interface Input { |
| 37 | alias?: string; |
| 38 | required?: boolean; |
| 39 | transform?: (value: any) => any; |
| 40 | // Note: This field is marked as `internal` in `@angular/core`, but in the compiler |
| 41 | // we rely on it for JIT processing at runtime. |
| 42 | isSignal: boolean; |
| 43 | } |
| 44 | |
| 45 | /** Flags describing an input for a directive. */ |
| 46 | export enum InputFlags { |
no outgoing calls
no test coverage detected
searching dependent graphs…