mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
refactoring circular imports
This commit is contained in:
10
tns-core-modules/ui/core/bindable.d.ts
vendored
10
tns-core-modules/ui/core/bindable.d.ts
vendored
@@ -1,5 +1,12 @@
|
||||
declare module "ui/core/bindable" {
|
||||
import { ViewBase } from "ui/core/view-base";
|
||||
import { Observable, WrappedValue, PropertyChangeData, EventData } from "data/observable";
|
||||
import { isEnabled as traceEnabled, write as traceWrite, categories as traceCategories, notifyEvent as traceNotifyEvent, messageType as traceMessageType, isCategorySet } from "trace";
|
||||
|
||||
export {
|
||||
Observable, WrappedValue, PropertyChangeData, EventData,
|
||||
traceEnabled, traceWrite, traceCategories, traceNotifyEvent, traceMessageType, isCategorySet
|
||||
};
|
||||
|
||||
/**
|
||||
* The options object used in the Bindable.bind method.
|
||||
@@ -47,4 +54,7 @@
|
||||
public sourceIsBindingContext: boolean;
|
||||
public updateTwoWay(value: any);
|
||||
}
|
||||
|
||||
export function getEventOrGestureName(name: string): string;
|
||||
export function isEventOrGesture(name: string, view: ViewBase): boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user