refactor(ivy): remove inputsPropertyName (#22716)
Closes #22591 PR Close #22716
This commit is contained in:
@ -68,14 +68,6 @@ export interface DirectiveDef<T> {
|
||||
*/
|
||||
readonly inputs: {[P in keyof T]: P};
|
||||
|
||||
/**
|
||||
* A dictionary mapping the inputs' minified property names to the original unminified property
|
||||
* names.
|
||||
*
|
||||
* An entry is added if and only if the alias is different from the property name.
|
||||
*/
|
||||
readonly inputsPropertyName: {[P in keyof T]: P};
|
||||
|
||||
/**
|
||||
* A dictionary mapping the outputs' minified property names to their public API names, which
|
||||
* are their aliases if any, or their original unminified property names
|
||||
@ -240,11 +232,6 @@ export interface DirectiveDefArgs<T> {
|
||||
*/
|
||||
inputs?: {[P in keyof T]?: string};
|
||||
|
||||
/**
|
||||
* TODO: Remove per https://github.com/angular/angular/issues/22591
|
||||
*/
|
||||
inputsPropertyName?: {[P in keyof T]?: string};
|
||||
|
||||
/**
|
||||
* A map of output names.
|
||||
*
|
||||
|
Reference in New Issue
Block a user