Skip to content

Commit 518e8d0

Browse files
committed
chore: clean up
1 parent 9f842df commit 518e8d0

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

packages/canvas-media/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ ns plugin add @nativescript/canvas-media
66

77
## Usage
88

9-
// TODO
10-
119
## License
1210

1311
Apache License Version 2.0

packages/canvas-media/common.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
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';
33

44
export class Source extends View {
55
public src: string;
66
public type: string;
77
}
88

99
export const srcProperty = new Property<Source, string>({
10-
name: 'src'
10+
name: 'src',
1111
});
1212

1313
srcProperty.register(Source);
1414

1515
export const typeProperty = new Property<Source, string>({
16-
name: 'type'
16+
name: 'type',
1717
});
1818

1919
typeProperty.register(Source);

0 commit comments

Comments
 (0)