mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-19 23:13:04 +08:00
16 lines
393 B
TypeScript
16 lines
393 B
TypeScript
/**
|
|
* Contains the Border class, which represents a UI border component.
|
|
*/
|
|
declare module "ui/border" {
|
|
import { ContentView } from "ui/content-view";
|
|
|
|
/**
|
|
* Represents a UI border component.
|
|
*/
|
|
export class Border extends ContentView {
|
|
/**
|
|
* Gets or sets the corner radius of the border component.
|
|
*/
|
|
cornerRadius: number;
|
|
}
|
|
} |