Files
NativeScript/tns-core-modules/ui/border/border.d.ts
Panayot Cankov d098ff43f5 Add module names for the typedoc, make it work
Mark members with @private for typedoc.
2017-04-20 16:58:30 +03:00

18 lines
380 B
TypeScript

/**
* @module "ui/animation/keyframe-animation"
*
* Contains the Border class, which represents a UI border component.
*/ /** */
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;
}