MCPcopy Index your code
hub / github.com/angular/angular / getComponentInputs

Function getComponentInputs

packages/elements/src/utils.ts:99–109  ·  view source on GitHub ↗
(
  component: Type<any>,
  injector: Injector,
)

Source from the content-addressed store, hash-verified

97 * are defined.
98 */
99export function getComponentInputs(
100 component: Type<any>,
101 injector: Injector,
102): readonly {
103 propName: string;
104 templateName: string;
105 transform?: (value: any) => any;
106 isSignal: boolean;
107}[] {
108 return reflectComponentType(component)!.inputs;
109}

Callers 1

createCustomElementFunction · 0.90

Calls 1

reflectComponentTypeFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…