Skip to content

Commit 1a2e5a9

Browse files
author
Hristo Hristov
authored
Fix ts-lint error (NativeScript#2314)
Fix grunt error
1 parent 3962ac1 commit 1a2e5a9

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

gruntfile.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -424,6 +424,7 @@ module.exports = function(grunt) {
424424
'!**/*.android.d.ts',
425425
'!node_modules/**/*',
426426
'!tests/node_modules/**/*.*',
427+
'!tests/platforms/**/*.*',
427428
'!bin/**/*',
428429
'!apps/**/*',
429430
'!android17.d.ts',

tns-core-modules/ui/activity-indicator/activity-indicator-common.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import {View} from "ui/core/view";
2-
import definition = require("ui/activity-indicator");
3-
import {PropertyMetadataSettings, Property} from "ui/core/dependency-observable";
4-
import proxy = require("ui/core/proxy");
1+
import definition = require("ui/activity-indicator");
2+
import {View} from "ui/core/view";
3+
import {Property} from "ui/core/dependency-observable";
4+
import {PropertyMetadata} from "ui/core/proxy";
55

6-
let busyProperty = new Property("busy", "ActivityIndicator", new proxy.PropertyMetadata(false));
6+
let busyProperty = new Property("busy", "ActivityIndicator", new PropertyMetadata(false));
77

88
export class ActivityIndicator extends View implements definition.ActivityIndicator {
99

0 commit comments

Comments
 (0)