mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-18 05:18:39 +08:00
12 lines
394 B
TypeScript
12 lines
394 B
TypeScript
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;
|
|
}
|
|
}
|
|
}
|