Files
NativeScript/ui/styling/background.android.d.ts
2016-02-17 16:33:10 +02:00

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;
}
}
}