refactor(ivy): remove inputsPropertyName (#22716)

Closes #22591

PR Close #22716
This commit is contained in:
Kara Erickson
2018-03-12 11:18:50 -07:00
parent 34e355a3b0
commit bd9d4df735
7 changed files with 72 additions and 64 deletions

View File

@ -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.
*