forked from nstudio/nativescript-cardview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.d.ts
More file actions
53 lines (42 loc) · 1.43 KB
/
index.d.ts
File metadata and controls
53 lines (42 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import { ContentView } from "ui/content-view";
/**
* Contains the CardView class, which represents a card view component.
*/
export class CardView extends ContentView {
/**
* Gets the native [android widget](https://developer.android.com/reference/android/support/v7/widget/CardView.html) that represents the user interface for this component. Valid only when running on Android OS.
*/
android: any /* android.support.v7.widget.CardView */;
/**
* Gets the native [ios widget](UIView) that represents the user interface for this component. Valid only when running on iOS.
*/
ios: any /* MaterialCard */;
/**
* Gets or set the radius of the card view.
*/
radius: number;
/**
* Gets or set the elevation of the card view. ** Valid only when running on Android OS **
*/
elevation: number;
/**
* Gets or set the shadow radius of the card view. ** Valid only when running on iOS **
*/
shadowRadius: number;
/**
* Set the shadow offset width of the card view. ** Valid only when running on iOS **
*/
shadowOffsetWidth: number;
/**
* Set the shadow offset height of the card view. ** Valid only when running on iOS **
*/
shadowOffsetHeight: number;
/**
* Set the shadow color of the card view. ** Valid only when running on iOS **
*/
shadowColor: string;
/**
* Set the shadow opacity of the card view. ** Valid only when running on iOS **
*/
shadowOpacity: number;
}