import { InputSignal } from "@angular/core"; import { TUndefToOptional } from "@simplysm/sd-core-common"; export type TDirectiveInputSignals = TUndefToOptional<{ [P in keyof T as T[P] extends InputSignal ? P : never]: T[P] extends InputSignal ? ReturnType : never; }>;