mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00

* chore: remove critical circular dependencies * chore: fix tslint errors * chore: remove platform specific types from interfaces * chore: update unit tests polyfills * fix: incorrect null check * chore: update api.md file * test: improve test case * chore: apply comments * test: avoid page style leaks in tests
13 lines
243 B
TypeScript
13 lines
243 B
TypeScript
// Types
|
|
import { Observable } from ".";
|
|
|
|
export interface EventData {
|
|
eventName: string;
|
|
object: Observable;
|
|
}
|
|
|
|
export interface PropertyChangeData extends EventData {
|
|
propertyName: string;
|
|
value: any;
|
|
oldValue?: any;
|
|
} |