mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 21:01:34 +08:00
17 lines
376 B
TypeScript
17 lines
376 B
TypeScript
/**
|
|
* Contains the Border class, which represents a UI border component.
|
|
* @module "ui/animation/keyframe-animation"
|
|
*/ /** */
|
|
|
|
import { ContentView } from "../content-view";
|
|
|
|
/**
|
|
* Represents a UI border component.
|
|
*/
|
|
export class Border extends ContentView {
|
|
/**
|
|
* Gets or sets the corner radius of the border component.
|
|
*/
|
|
cornerRadius: number;
|
|
}
|