mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-18 13:51:27 +08:00
13 lines
405 B
TypeScript
13 lines
405 B
TypeScript
//@private
|
|
declare module "ui/styling/background" {
|
|
// We are using "ad" here to avoid namespace collision with the global android object
|
|
export module ad {
|
|
export class BorderDrawable extends android.graphics.drawable.ColorDrawable {
|
|
borderWidth: number;
|
|
cornerRadius: number;
|
|
borderColor: number;
|
|
background: Background;
|
|
}
|
|
}
|
|
}
|