mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
@@ -424,6 +424,7 @@ module.exports = function(grunt) {
|
||||
'!**/*.android.d.ts',
|
||||
'!node_modules/**/*',
|
||||
'!tests/node_modules/**/*.*',
|
||||
'!tests/platforms/**/*.*',
|
||||
'!bin/**/*',
|
||||
'!apps/**/*',
|
||||
'!android17.d.ts',
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import {View} from "ui/core/view";
|
||||
import definition = require("ui/activity-indicator");
|
||||
import {PropertyMetadataSettings, Property} from "ui/core/dependency-observable";
|
||||
import proxy = require("ui/core/proxy");
|
||||
import definition = require("ui/activity-indicator");
|
||||
import {View} from "ui/core/view";
|
||||
import {Property} from "ui/core/dependency-observable";
|
||||
import {PropertyMetadata} from "ui/core/proxy";
|
||||
|
||||
let busyProperty = new Property("busy", "ActivityIndicator", new proxy.PropertyMetadata(false));
|
||||
let busyProperty = new Property("busy", "ActivityIndicator", new PropertyMetadata(false));
|
||||
|
||||
export class ActivityIndicator extends View implements definition.ActivityIndicator {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user