fix(core/properties): Fix typings for nativeValueChange (#5791)

* Fix typings for nativeValueChange

* Update properties.d.ts

Changed parameter name of nativeValueChange from “target” to “owner”
Fixed white space to match coding style

* Update properties.d.ts

Fixed white space
This commit is contained in:
Gheric Speiginer
2018-06-19 07:20:55 -04:00
committed by Alexander Vakrilov
parent 6cfdc206d9
commit 357c8ecf15

View File

@ -52,7 +52,7 @@ export class Property<T extends ViewBase, U> {
public readonly setNative: symbol;
public readonly defaultValue: U;
public register(cls: { prototype: T }): void;
public nativeValueChange(T, U): void;
public nativeValueChange(owner: T, value: U): void;
public isSet(instance: T): boolean;
}
export interface Property<T extends ViewBase, U> extends TypedPropertyDescriptor<U> {