Files
NativeScript/ui/border/border.d.ts
Hristo Hristov b2c182fd7a Improve Binding class (#2038)
Remove options parameter
2016-04-27 16:43:45 +03:00

27 lines
663 B
TypeScript

/**
* Contains the Border class, which represents a UI border component.
*/
declare module "ui/border" {
import {ContentView} from "ui/content-view";
import {Color} from "color";
/**
* Represents a UI border component.
*/
export class Border extends ContentView {
/**
* Gets or sets the corner radius of the border component.
*/
cornerRadius: number;
/**
* Gets or sets the border width of the border component.
*/
borderWidth: number;
/**
* Gets or sets the border color of the border component.
*/
borderColor: Color;
}
}