docs: add @Input/@Output to deprecation messages

This commit is contained in:
Yegor Jbanov 2015-11-02 14:47:23 -08:00
parent c4129071ef
commit 8dc079eee5
1 changed files with 4 additions and 4 deletions

View File

@ -18,9 +18,9 @@ class Directive extends DirectiveMetadata {
{String selector, {String selector,
List<String> inputs, List<String> inputs,
List<String> outputs, List<String> outputs,
@Deprecated('Use `inputs` instead') @Deprecated('Use `inputs` or `@Input` instead')
List<String> properties, List<String> properties,
@Deprecated('Use `outputs` instead') @Deprecated('Use `outputs` or `@Output` instead')
List<String> events, List<String> events,
Map<String, String> host, Map<String, String> host,
@Deprecated('Use `providers` instead') @Deprecated('Use `providers` instead')
@ -51,9 +51,9 @@ class Component extends ComponentMetadata {
{String selector, {String selector,
List<String> inputs, List<String> inputs,
List<String> outputs, List<String> outputs,
@Deprecated('Use `inputs` instead') @Deprecated('Use `inputs` or `@Input` instead')
List<String> properties, List<String> properties,
@Deprecated('Use `outputs` instead') @Deprecated('Use `outputs` or `@Output` instead')
List<String> events, List<String> events,
Map<String, String> host, Map<String, String> host,
@Deprecated('Use `providers` instead') @Deprecated('Use `providers` instead')