File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,6 @@ ns plugin add @nativescript/canvas-media
6
6
7
7
## Usage
8
8
9
- // TODO
10
-
11
9
## License
12
10
13
11
Apache License Version 2.0
Original file line number Diff line number Diff line change 1
- import { View } from " @nativescript/core" ;
2
- import { Property } from " @nativescript/core/ui/core/view" ;
1
+ import { View } from ' @nativescript/core' ;
2
+ import { Property } from ' @nativescript/core/ui/core/view' ;
3
3
4
4
export class Source extends View {
5
5
public src : string ;
6
6
public type : string ;
7
7
}
8
8
9
9
export const srcProperty = new Property < Source , string > ( {
10
- name : 'src'
10
+ name : 'src' ,
11
11
} ) ;
12
12
13
13
srcProperty . register ( Source ) ;
14
14
15
15
export const typeProperty = new Property < Source , string > ( {
16
- name : 'type'
16
+ name : 'type' ,
17
17
} ) ;
18
18
19
19
typeProperty . register ( Source ) ;
You can’t perform that action at this time.
0 commit comments