diff --git a/tns-core-modules/ui/border/border.d.ts b/tns-core-modules/ui/border/border.d.ts index 747772e41..5fc5e47b6 100644 --- a/tns-core-modules/ui/border/border.d.ts +++ b/tns-core-modules/ui/border/border.d.ts @@ -2,7 +2,6 @@ * Contains the Border class, which represents a UI border component. */ declare module "ui/border" { - import { Color } from "color"; import { ContentView } from "ui/content-view"; /** @@ -13,15 +12,5 @@ declare module "ui/border" { * Gets or sets the corner radius of the border component. */ cornerRadius: number; - - /** - * Gets or sets the border width of the border component. - */ - borderWidth: string | number; - - /** - * Gets or sets the border color of the border component. - */ - borderColor: string | Color; } } \ No newline at end of file diff --git a/tns-core-modules/ui/button/button.android.ts b/tns-core-modules/ui/button/button.android.ts index 5f89ee573..0ef33f524 100644 --- a/tns-core-modules/ui/button/button.android.ts +++ b/tns-core-modules/ui/button/button.android.ts @@ -1,5 +1,7 @@ -import { ButtonBase, textProperty, formattedTextProperty } from "./button-common"; -import { FormattedString } from "text/formatted-string"; +import { + ButtonBase, textProperty, formattedTextProperty, TouchGestureEventData, FormattedString, GestureTypes, TouchAction, + PseudoClassHandler +} from "./button-common"; export * from "./button-common"; @@ -17,32 +19,11 @@ class ClickListener implements android.view.View.OnClickListener { } } -@Interfaces([android.view.View.OnTouchListener]) -class TouchListener implements android.view.View.OnTouchListener { - constructor(public owner: WeakRef