diff --git a/android17.d.ts b/android17.d.ts index 1e5df00d5..2166aee83 100644 --- a/android17.d.ts +++ b/android17.d.ts @@ -4603,7 +4603,7 @@ declare module android { stopService(service: android.content.Intent): boolean; bindService(service: android.content.Intent, conn: android.content.IServiceConnection, flags: number): boolean; unbindService(conn: android.content.IServiceConnection): void; - startInstrumentation(className: android.content.ComponentName, profileFile: string, arguments: android.os.Bundle): boolean; + startInstrumentation(className: android.content.ComponentName, profileFile: string, args: android.os.Bundle): boolean; getSystemService(name: string): any; checkPermission(permission: string, pid: number, uid: number): number; checkCallingPermission(permission: string): number; @@ -5520,7 +5520,7 @@ declare module android { WatcherResultPrinter: { new (numTests: number): android.test.InstrumentationTestRunner.WatcherResultPrinter; }; - onCreate(arguments: android.os.Bundle): void; + onCreate(args: android.os.Bundle): void; onStart(): void; /** * Override this to provide access to the class loader of your package. @@ -7223,7 +7223,7 @@ declare module android { * @param action The identifier of the action to perform. * @param arguments The action arguments, or {@code null} if no arguments. */ - performAccessibilityAction(action: number, arguments: android.os.Bundle): boolean; + performAccessibilityAction(action: number, args: android.os.Bundle): boolean; /** * Attempts to handle key events when accessibility is turned on. * @param event The key event to handle. @@ -30434,7 +30434,7 @@ declare module android { sendAccessibilityEvent(eventType: number): void; onInitializeAccessibilityEvent(event: android.view.accessibility.AccessibilityEvent): void; onInitializeAccessibilityNodeInfo(info: android.view.accessibility.AccessibilityNodeInfo): void; - performAccessibilityAction(action: number, arguments: android.os.Bundle): boolean; + performAccessibilityAction(action: number, args: android.os.Bundle): boolean; /** * Indicates whether the children's drawing cache is used during a scroll. By default, the drawing cache is enabled but this will consume more memory. */ @@ -30863,7 +30863,7 @@ declare module android { export class ListItemAccessibilityDelegate extends android.view.View.AccessibilityDelegate { static class: java.lang.Class; onInitializeAccessibilityNodeInfo(host: android.view.View, info: android.view.accessibility.AccessibilityNodeInfo): void; - performAccessibilityAction(host: android.view.View, action: number, arguments: android.os.Bundle): boolean; + performAccessibilityAction(host: android.view.View, action: number, args: android.os.Bundle): boolean; } export class SavedState extends android.view.View.BaseSavedState { static CREATOR: android.os.Parcelable.ICreator; @@ -33371,7 +33371,7 @@ declare module android { advance(): void; onInitializeAccessibilityEvent(event: android.view.accessibility.AccessibilityEvent): void; onInitializeAccessibilityNodeInfo(info: android.view.accessibility.AccessibilityNodeInfo): void; - performAccessibilityAction(action: number, arguments: android.os.Bundle): boolean; + performAccessibilityAction(action: number, args: android.os.Bundle): boolean; } export module StackView { export class StackFrame extends android.widget.FrameLayout { @@ -34121,7 +34121,7 @@ declare module android { onKeyDown(keyCode: number, event: android.view.KeyEvent): boolean; onInitializeAccessibilityEvent(event: android.view.accessibility.AccessibilityEvent): void; onInitializeAccessibilityNodeInfo(info: android.view.accessibility.AccessibilityNodeInfo): void; - performAccessibilityAction(action: number, arguments: android.os.Bundle): boolean; + performAccessibilityAction(action: number, args: android.os.Bundle): boolean; onRtlPropertiesChanged(layoutDirection: number): void; } /** @@ -35553,7 +35553,7 @@ declare module android { onInterceptTouchEvent(ev: android.view.MotionEvent): boolean; onTouchEvent(ev: android.view.MotionEvent): boolean; onGenericMotionEvent(event: android.view.MotionEvent): boolean; - performAccessibilityAction(action: number, arguments: android.os.Bundle): boolean; + performAccessibilityAction(action: number, args: android.os.Bundle): boolean; onInitializeAccessibilityNodeInfo(info: android.view.accessibility.AccessibilityNodeInfo): void; onInitializeAccessibilityEvent(event: android.view.accessibility.AccessibilityEvent): void; /** @@ -37583,7 +37583,7 @@ declare module android { static class: java.lang.Class; createAccessibilityNodeInfo(virtualViewId: number): android.view.accessibility.AccessibilityNodeInfo; findAccessibilityNodeInfosByText(searched: string, virtualViewId: number): java.util.IList; - performAction(virtualViewId: number, action: number, arguments: android.os.Bundle): boolean; + performAction(virtualViewId: number, action: number, args: android.os.Bundle): boolean; sendAccessibilityEventForVirtualView(virtualViewId: number, eventType: number): void; } /** @@ -38425,7 +38425,7 @@ declare module android { setGravity(gravity: number): void; onInitializeAccessibilityEvent(event: android.view.accessibility.AccessibilityEvent): void; onInitializeAccessibilityNodeInfo(info: android.view.accessibility.AccessibilityNodeInfo): void; - performAccessibilityAction(action: number, arguments: android.os.Bundle): boolean; + performAccessibilityAction(action: number, args: android.os.Bundle): boolean; } export module Gallery { /** @@ -39340,7 +39340,7 @@ declare module android { onTouchEvent(ev: android.view.MotionEvent): boolean; onGenericMotionEvent(event: android.view.MotionEvent): boolean; shouldDelayChildPressedState(): boolean; - performAccessibilityAction(action: number, arguments: android.os.Bundle): boolean; + performAccessibilityAction(action: number, args: android.os.Bundle): boolean; onInitializeAccessibilityNodeInfo(info: android.view.accessibility.AccessibilityNodeInfo): void; onInitializeAccessibilityEvent(event: android.view.accessibility.AccessibilityEvent): void; /** @@ -46228,7 +46228,7 @@ declare module android { * Called when the instrumentation is starting, before any application code has been loaded. Usually this will be implemented to simply call #start to begin the instrumentation thread, which will then continue execution in #onStart. * @param arguments Any additional arguments that were supplied when the */ - onCreate(arguments: android.os.Bundle): void; + onCreate(args: android.os.Bundle): void; /** * Create and start a new thread in which to run instrumentation. This new thread will call to #onStart where you can implement the instrumentation. */ @@ -51360,7 +51360,7 @@ declare module android { stopServiceAsUser(service: android.content.Intent, user: android.os.UserHandle): boolean; bindService(service: android.content.Intent, conn: android.content.IServiceConnection, flags: number): boolean; unbindService(conn: android.content.IServiceConnection): void; - startInstrumentation(className: android.content.ComponentName, profileFile: string, arguments: android.os.Bundle): boolean; + startInstrumentation(className: android.content.ComponentName, profileFile: string, args: android.os.Bundle): boolean; getSystemService(name: string): any; checkPermission(permission: string, pid: number, uid: number): number; checkCallingPermission(permission: string): number; @@ -63467,7 +63467,7 @@ declare module android { static postOnAnimationDelayed(view: android.view.View, action: java.lang.IRunnable, delayMillis: number): void; static getImportantForAccessibility(view: android.view.View): number; static setImportantForAccessibility(view: android.view.View, mode: number): void; - static performAccessibilityAction(view: android.view.View, action: number, arguments: android.os.Bundle): boolean; + static performAccessibilityAction(view: android.view.View, action: number, args: android.os.Bundle): boolean; static getAccessibilityNodeProvider(view: android.view.View): any; } /** @@ -63715,7 +63715,7 @@ declare module android { * @param action arguments Optional action arguments. * @param arguments */ - static performAccessibilityAction(view: android.view.View, action: number, arguments: android.os.Bundle): boolean; + static performAccessibilityAction(view: android.view.View, action: number, args: android.os.Bundle): boolean; /** * Gets the provider for managing a virtual view hierarchy rooted at this View and reported to android.accessibilityservice.AccessibilityServices that explore the window content. * @param view The view whose property to get. @@ -63763,7 +63763,7 @@ declare module android { postOnAnimationDelayed(view: android.view.View, action: java.lang.IRunnable, delayMillis: number): void; getImportantForAccessibility(view: android.view.View): number; setImportantForAccessibility(view: android.view.View, mode: number): void; - performAccessibilityAction(view: android.view.View, action: number, arguments: android.os.Bundle): boolean; + performAccessibilityAction(view: android.view.View, action: number, args: android.os.Bundle): boolean; getAccessibilityNodeProvider(view: android.view.View): android.support.v4.view.accessibility.AccessibilityNodeProviderCompat; setLayerType(view: android.view.View, layerType: number, paint: android.graphics.Paint): void; getLayerType(view: android.view.View): number; @@ -63780,7 +63780,7 @@ declare module android { postOnAnimationDelayed(view: android.view.View, action: java.lang.IRunnable, delayMillis: number): void; getImportantForAccessibility(view: android.view.View): number; setImportantForAccessibility(view: android.view.View, mode: number): void; - performAccessibilityAction(view: android.view.View, action: number, arguments: android.os.Bundle): boolean; + performAccessibilityAction(view: android.view.View, action: number, args: android.os.Bundle): boolean; getAccessibilityNodeProvider(view: android.view.View): android.support.v4.view.accessibility.AccessibilityNodeProviderCompat; } export class ViewCompatImpl implements android.support.v4.view.ViewCompat.IViewCompatImpl { @@ -63801,7 +63801,7 @@ declare module android { postOnAnimationDelayed(view: android.view.View, action: java.lang.IRunnable, delayMillis: number): void; getImportantForAccessibility(view: android.view.View): number; setImportantForAccessibility(view: android.view.View, mode: number): void; - performAccessibilityAction(view: android.view.View, action: number, arguments: android.os.Bundle): boolean; + performAccessibilityAction(view: android.view.View, action: number, args: android.os.Bundle): boolean; getAccessibilityNodeProvider(view: android.view.View): android.support.v4.view.accessibility.AccessibilityNodeProviderCompat; setLayerType(view: android.view.View, layerType: number, paint: android.graphics.Paint): void; getLayerType(view: android.view.View): number; @@ -64101,7 +64101,7 @@ declare module android { * @param action The action to perform. * @param arguments Optional arguments. */ - performAction(virtualViewId: number, action: number, arguments: android.os.Bundle): boolean; + performAction(virtualViewId: number, action: number, args: android.os.Bundle): boolean; /** * Finds AccessibilityNodeInfoCompats by text. The match is case insensitive containment. The search is relative to the virtual view, i.e. a descendant of the host View, with the given virtualViewId or the host View itself virtualViewId equals to View#NO_ID. * @param text virtualViewId A client defined virtual view id which defined @@ -64889,7 +64889,7 @@ declare module android { * @param action The action to perform. * @param arguments A bundle with additional arguments. */ - performAction(action: number, arguments: android.os.Bundle): boolean; + performAction(action: number, args: android.os.Bundle): boolean; /** * Sets the movement granularities for traversing the text of this node. * @param granularities The bit mask with granularities. @@ -65109,7 +65109,7 @@ declare module android { getActions(info: any): number; addAction(info: any, action: number): void; performAction(info: any, action: number): boolean; - performAction(info: any, action: number, arguments: android.os.Bundle): boolean; + performAction(info: any, action: number, args: android.os.Bundle): boolean; setMovementGranularities(info: any, granularities: number): void; getMovementGranularities(info: any): number; findAccessibilityNodeInfosByText(info: any, text: string): java.util.IList; @@ -65205,7 +65205,7 @@ declare module android { recycle(info: any): void; obtain(root: android.view.View, virtualDescendantId: number): any; addChild(info: any, child: android.view.View, virtualDescendantId: number): void; - performAction(info: any, action: number, arguments: android.os.Bundle): boolean; + performAction(info: any, action: number, args: android.os.Bundle): boolean; setSource(info: any, root: android.view.View, virtualDescendantId: number): void; setParent(info: any, root: android.view.View, virtualDescendantId: number): void; } @@ -65220,7 +65220,7 @@ declare module android { setVisibleToUser(info: any, visibleToUser: boolean): void; isAccessibilityFocused(info: any): boolean; setAccessibilityFocused(info: any, focused: boolean): void; - performAction(info: any, action: number, arguments: android.os.Bundle): boolean; + performAction(info: any, action: number, args: android.os.Bundle): boolean; setMovementGranularities(info: any, granularities: number): void; getMovementGranularities(info: any): number; setParent(info: any, root: android.view.View, virtualDescendantId: number): void; @@ -65328,7 +65328,7 @@ declare module android { isScrollable(info: any): boolean; isSelected(info: any): boolean; performAction(info: any, action: number): boolean; - performAction(info: any, action: number, arguments: android.os.Bundle): boolean; + performAction(info: any, action: number, args: android.os.Bundle): boolean; setMovementGranularities(info: any, granularities: number): void; getMovementGranularities(info: any): number; setBoundsInParent(info: any, bounds: android.graphics.Rect): void; @@ -65405,7 +65405,7 @@ declare module android { static setSource(info: any, root: android.view.View, virtualDescendantId: number): void; static isVisibleToUser(info: any): boolean; static setVisibleToUser(info: any, visibleToUser: boolean): void; - static performAction(info: any, action: number, arguments: android.os.Bundle): boolean; + static performAction(info: any, action: number, args: android.os.Bundle): boolean; static setMovementGranularities(info: any, granularities: number): void; static getMovementGranularities(info: any): number; static obtain(root: android.view.View, virtualDescendantId: number): any; @@ -65551,7 +65551,7 @@ declare module android { export class AccessibilityNodeInfoBridge implements android.support.v4.view.accessibility.AccessibilityNodeProviderCompatJellyBean.IAccessibilityNodeInfoBridge { constructor(implementation: android.support.v4.view.accessibility.AccessibilityNodeProviderCompatJellyBean.IAccessibilityNodeInfoBridge); createAccessibilityNodeInfo(virtualViewId: number): any; - performAction(virtualViewId: number, action: number, arguments: android.os.Bundle): boolean; + performAction(virtualViewId: number, action: number, args: android.os.Bundle): boolean; findAccessibilityNodeInfosByText(text: string, virtualViewId: number): java.util.IList; } } @@ -87160,7 +87160,7 @@ declare module android { * @param profileFile Optional path to write profiling data as the * @param arguments Additional optional arguments to pass to the */ - startInstrumentation(className: android.content.ComponentName, profileFile: string, arguments: android.os.Bundle): boolean; + startInstrumentation(className: android.content.ComponentName, profileFile: string, args: android.os.Bundle): boolean; /** * Return the handle to a system-level service by name. The class of the returned object varies by the requested name. Currently available names are: * @param name The name of the desired service. @@ -94303,7 +94303,7 @@ declare module android { stopService(name: android.content.Intent): boolean; bindService(service: android.content.Intent, conn: android.content.IServiceConnection, flags: number): boolean; unbindService(conn: android.content.IServiceConnection): void; - startInstrumentation(className: android.content.ComponentName, profileFile: string, arguments: android.os.Bundle): boolean; + startInstrumentation(className: android.content.ComponentName, profileFile: string, args: android.os.Bundle): boolean; getSystemService(name: string): any; checkPermission(permission: string, pid: number, uid: number): number; checkCallingPermission(permission: string): number; @@ -99552,7 +99552,7 @@ declare module android { static sDevicePairPasskey: number; static class: java.lang.Class; getLoader(): java.lang.ClassLoader; - onCreate(arguments: android.os.Bundle): void; + onCreate(args: android.os.Bundle): void; } /** * Public APIs for the Bluetooth Profiles. @@ -115189,7 +115189,7 @@ declare module android { * @param action The action to perform. * @param arguments A bundle with additional arguments. */ - performAction(action: number, arguments: android.os.Bundle): boolean; + performAction(action: number, args: android.os.Bundle): boolean; /** * Finds AccessibilityNodeInfos by text. The match is case insensitive containment. The search is relative to this info i.e. this info is the root of the traversed tree. * @param text The searched text. @@ -115468,7 +115468,7 @@ declare module android { * @param action The action to perform. * @param arguments Optional action arguments. */ - performAction(virtualViewId: number, action: number, arguments: android.os.Bundle): boolean; + performAction(virtualViewId: number, action: number, args: android.os.Bundle): boolean; /** * Finds AccessibilityNodeInfos by text. The match is case insensitive containment. The search is relative to the virtual view, i.e. a descendant of the host View, with the given virtualViewId or the host View itself virtualViewId equals to View#NO_ID. * @param text virtualViewId A client defined virtual view id which defined @@ -117534,7 +117534,7 @@ declare module android { * @param action The action to perform. * @param arguments Optional action arguments. */ - performAccessibilityAction(action: number, arguments: android.os.Bundle): boolean; + performAccessibilityAction(action: number, args: android.os.Bundle): boolean; /** * This is called when a container is going to temporarily detach a child, with ViewGroup#detachViewFromParent(View) ViewGroup.detachViewFromParent. It will either be followed by #onFinishTemporaryDetach() or #onDetachedFromWindow() when the container is done. */ diff --git a/ios.d.ts b/ios.d.ts index 91cc97935..89961bcd2 100644 --- a/ios.d.ts +++ b/ios.d.ts @@ -4018,7 +4018,7 @@ declare class NSCache extends NSObject { declare class NSPredicate extends NSObject implements NSSecureCoding, NSCopying { predicateFormat: string; constructor(); - static predicateWithFormatArgumentArray(predicateFormat: string, arguments: NSArray): NSPredicate; + static predicateWithFormatArgumentArray(predicateFormat: string, args: NSArray): NSPredicate; static predicateWithValue(value: boolean): NSPredicate; static predicateWithBlock(block: (arg1: any, arg2: NSDictionary) => boolean): NSPredicate; predicateWithSubstitutionVariables(variables: NSDictionary): NSPredicate; @@ -4109,7 +4109,7 @@ declare class NSExpression extends NSObject implements NSSecureCoding, NSCopying expressionBlock: (arg1: any, arg2: NSArray, arg3: NSMutableDictionary) => any; constructor(type: number); constructor(); - static expressionWithFormatArgumentArray(expressionFormat: string, arguments: NSArray): NSExpression; + static expressionWithFormatArgumentArray(expressionFormat: string, args: NSArray): NSExpression; static expressionForConstantValue(obj: any): NSExpression; static expressionForEvaluatedObject(): NSExpression; static expressionForVariable(string: string): NSExpression; @@ -4122,7 +4122,7 @@ declare class NSExpression extends NSObject implements NSSecureCoding, NSCopying static expressionForSubqueryUsingIteratorVariablePredicate(expression: NSExpression, variable: string, predicate: any): NSExpression; static expressionForFunctionSelectorNameArguments(target: NSExpression, name: string, parameters: NSArray): NSExpression; static expressionForAnyKey(): NSExpression; - static expressionForBlockArguments(block: (arg1: any, arg2: NSArray, arg3: NSMutableDictionary) => any, arguments: NSArray): NSExpression; + static expressionForBlockArguments(block: (arg1: any, arg2: NSArray, arg3: NSMutableDictionary) => any, args: NSArray): NSExpression; initWithExpressionType(type: number): NSExpression; expressionValueWithObjectContext(object: any, context: NSMutableDictionary): any; allowEvaluation(): void; @@ -15023,7 +15023,7 @@ declare class GKTurnBasedMatch extends NSObject { exchangeDataMaximumSize: number; exchangeMaxInitiatedExchangesPerPlayer: number; constructor(); - setLocalizableMessageWithKeyArguments(key: string, arguments: NSArray): void; + setLocalizableMessageWithKeyArguments(key: string, args: NSArray): void; static findMatchForRequestWithCompletionHandler(request: GKMatchRequest, completionHandler: (arg1: GKTurnBasedMatch, arg2: NSError) => void): void; static loadMatchesWithCompletionHandler(completionHandler: (arg1: NSArray, arg2: NSError) => void): void; static loadMatchWithIDWithCompletionHandler(matchID: string, completionHandler: (arg1: GKTurnBasedMatch, arg2: NSError) => void): void; @@ -15039,8 +15039,8 @@ declare class GKTurnBasedMatch extends NSObject { endMatchInTurnWithMatchDataScoresAchievementsCompletionHandler(matchData: NSData, scores: NSArray, achievements: NSArray, completionHandler: (arg1: NSError) => void): void; saveCurrentTurnWithMatchDataCompletionHandler(matchData: NSData, completionHandler: (arg1: NSError) => void): void; saveMergedMatchDataWithResolvedExchangesCompletionHandler(matchData: NSData, exchanges: NSArray, completionHandler: (arg1: NSError) => void): void; - sendExchangeToParticipantsDataLocalizableMessageKeyArgumentsTimeoutCompletionHandler(participants: NSArray, data: NSData, key: string, arguments: NSArray, timeout: number, completionHandler: (arg1: GKTurnBasedExchange, arg2: NSError) => void): void; - sendReminderToParticipantsLocalizableMessageKeyArgumentsCompletionHandler(participants: NSArray, key: string, arguments: NSArray, completionHandler: (arg1: NSError) => void): void; + sendExchangeToParticipantsDataLocalizableMessageKeyArgumentsTimeoutCompletionHandler(participants: NSArray, data: NSData, key: string, args: NSArray, timeout: number, completionHandler: (arg1: GKTurnBasedExchange, arg2: NSError) => void): void; + sendReminderToParticipantsLocalizableMessageKeyArgumentsCompletionHandler(participants: NSArray, key: string, args: NSArray, completionHandler: (arg1: NSError) => void): void; endTurnWithNextParticipantMatchDataCompletionHandler(nextParticipant: GKTurnBasedParticipant, matchData: NSData, completionHandler: (arg1: NSError) => void): void; participantQuitInTurnWithOutcomeNextParticipantMatchDataCompletionHandler(matchOutcome: number, nextParticipant: GKTurnBasedParticipant, matchData: NSData, completionHandler: (arg1: NSError) => void): void; init(): GKTurnBasedMatch; @@ -15061,8 +15061,8 @@ declare class GKTurnBasedExchange extends NSObject { completionDate: NSDate; replies: NSArray; constructor(); - cancelWithLocalizableMessageKeyArgumentsCompletionHandler(key: string, arguments: NSArray, completionHandler: (arg1: NSError) => void): void; - replyWithLocalizableMessageKeyArgumentsDataCompletionHandler(key: string, arguments: NSArray, data: NSData, completionHandler: (arg1: NSError) => void): void; + cancelWithLocalizableMessageKeyArgumentsCompletionHandler(key: string, args: NSArray, completionHandler: (arg1: NSError) => void): void; + replyWithLocalizableMessageKeyArgumentsDataCompletionHandler(key: string, args: NSArray, data: NSData, completionHandler: (arg1: NSError) => void): void; init(): GKTurnBasedExchange; static new(): GKTurnBasedExchange; static allocWithZone(zone: any): GKTurnBasedExchange; @@ -16916,9 +16916,9 @@ declare class JSValue extends NSObject { isEqualToObject(value: any): boolean; isEqualWithTypeCoercionToObject(value: any): boolean; isInstanceOf(value: any): boolean; - callWithArguments(arguments: NSArray): JSValue; - constructWithArguments(arguments: NSArray): JSValue; - invokeMethodWithArguments(method: string, arguments: NSArray): JSValue; + callWithArguments(args: NSArray): JSValue; + constructWithArguments(args: NSArray): JSValue; + invokeMethodWithArguments(method: string, args: NSArray): JSValue; static valueWithPointInContext(point: CGPoint, context: JSContext): JSValue; static valueWithRangeInContext(range: NSRange, context: JSContext): JSValue; static valueWithRectInContext(rect: CGRect, context: JSContext): JSValue; diff --git a/package.json b/package.json index 6beccb103..ec0404f7c 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,6 @@ "grunt-shell": "1.1.2", "grunt-ts": "4.0.1", "grunt-tslint": "0.4.2", - "typescript": "1.4.1" + "typescript": "1.5.0-beta" } } diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 000000000..f5f19ea65 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,512 @@ +{ + "version": "1.5.0-beta", + "compilerOptions": { + "target": "es5", + "module": "commonjs", + "declaration": false, + "noImplicitAny": false, + "removeComments": true, + "noLib": true, + "outDir": "dist" + }, + "filesGlob": [ + "./**/*.ts", + "!./node_modules/**/*.ts", + "!./bin/**/*.*", + "!./obj/**/*.*" + ], + "files": [ + "./_references.ts", + "./android17.d.ts", + "./application-settings/application-settings-common.ts", + "./application-settings/application-settings.android.ts", + "./application-settings/application-settings.d.ts", + "./application-settings/application-settings.ios.ts", + "./application/application-common.ts", + "./application/application.android.ts", + "./application/application.d.ts", + "./application/application.ios.ts", + "./apps/TelerikNEXT/TelerikUI/side-bar/side-bar-common.ts", + "./apps/TelerikNEXT/TelerikUI/side-bar/side-bar.android.ts", + "./apps/TelerikNEXT/TelerikUI/side-bar/side-bar.d.ts", + "./apps/TelerikNEXT/TelerikUI/side-bar/side-bar.ios.ts", + "./apps/TelerikNEXT/app-view-model.ts", + "./apps/TelerikNEXT/app.ts", + "./apps/TelerikNEXT/everlive-upload.ts", + "./apps/TelerikNEXT/main-page.ts", + "./apps/TelerikNEXT/session-page.ts", + "./apps/absolute-layout-demo/app.ts", + "./apps/absolute-layout-demo/mainPage.ts", + "./apps/cuteness.io/app.ts", + "./apps/cuteness.io/details-page.ts", + "./apps/cuteness.io/main-page.ts", + "./apps/cuteness.io/reddit-app-view-model.ts", + "./apps/cuteness.io/reddit-item-view-model.ts", + "./apps/cuteness.io/reddit-model.d.ts", + "./apps/editable-text-demo/app.ts", + "./apps/editable-text-demo/main-page.ts", + "./apps/editable-text-demo/model.ts", + "./apps/gallery-app/app.ts", + "./apps/gallery-app/main-page.ts", + "./apps/gallery-app/views/dialogs.ts", + "./apps/gallery-app/views/list-picker.ts", + "./apps/gallery-app/views/list-view.ts", + "./apps/paylocity/app.ts", + "./apps/paylocity/login.ts", + "./apps/paylocity/news.ts", + "./apps/perf-tests/ApplicationLoadTimeAndFPS/app.ts", + "./apps/perf-tests/ApplicationLoadTimeAndFPS/mainPage.ts", + "./apps/perf-tests/ApplicationSize/app.ts", + "./apps/perf-tests/ApplicationSize/mainPage.ts", + "./apps/perf-tests/ComplexObjectGraphMemoryTest/app.ts", + "./apps/perf-tests/ComplexObjectGraphMemoryTest/mainPage.ts", + "./apps/perf-tests/ControlCreationSpeedTest/app.ts", + "./apps/perf-tests/ControlCreationSpeedTest/mainPage.ts", + "./apps/perf-tests/LargeObjectArrayMemoryLeakTest/app.ts", + "./apps/perf-tests/LargeObjectArrayMemoryLeakTest/mainPage.ts", + "./apps/perf-tests/LargeObjectArrayMemoryLeakTest/native-calls-wrapper.android.ts", + "./apps/perf-tests/LargeObjectArrayMemoryLeakTest/native-calls-wrapper.d.ts", + "./apps/perf-tests/LargeObjectArrayMemoryLeakTest/native-calls-wrapper.ios.ts", + "./apps/perf-tests/LargeObjectArrayMemoryTest/app.ts", + "./apps/perf-tests/LargeObjectArrayMemoryTest/mainPage.ts", + "./apps/perf-tests/NavigationMemoryLeakTest/app.ts", + "./apps/perf-tests/NavigationMemoryLeakTest/mainPage.ts", + "./apps/perf-tests/NavigationTest/app.ts", + "./apps/perf-tests/NavigationTest/details-page.ts", + "./apps/perf-tests/NavigationTest/master-page.ts", + "./apps/perf-tests/NavigationTest/page1.ts", + "./apps/perf-tests/NavigationTest/page2.ts", + "./apps/perf-tests/SingleUIObjectMemoryLeakTest/app.ts", + "./apps/perf-tests/SingleUIObjectMemoryLeakTest/mainPage.ts", + "./apps/perf-tests/SpeedTests/app.ts", + "./apps/perf-tests/SpeedTests/mainPage.ts", + "./apps/perf-tests/SpeedTests/tests-native.android.ts", + "./apps/perf-tests/SpeedTests/tests-native.d.ts", + "./apps/perf-tests/SpeedTests/tests-native.ios.ts", + "./apps/perf-tests/SpeedTests/tests.d.ts", + "./apps/perf-tests/SpeedTests/tests.ts", + "./apps/perf-tests/common.d.ts", + "./apps/perf-tests/common.ts", + "./apps/perf-tests/controls-page.d.ts", + "./apps/perf-tests/controls-page.ts", + "./apps/perf-tests/nav-page.d.ts", + "./apps/perf-tests/nav-page.ts", + "./apps/pickers-demo/app.ts", + "./apps/pickers-demo/main-page.ts", + "./apps/pickers-demo/model.ts", + "./apps/placeholder-demo/app.ts", + "./apps/placeholder-demo/main-page.android.ts", + "./apps/placeholder-demo/main-page.ios.ts", + "./apps/tab-view-demo/app.ts", + "./apps/tab-view-demo/mainPage.ts", + "./apps/template-blank/app.ts", + "./apps/template-blank/main-page.ts", + "./apps/template-hello-world/app.ts", + "./apps/template-hello-world/main-page.ts", + "./apps/template-hello-world/main-view-model.ts", + "./apps/template-master-detail/app.ts", + "./apps/template-master-detail/details-page.ts", + "./apps/template-master-detail/main-page.ts", + "./apps/template-master-detail/main-view-model.ts", + "./apps/template-settings/app.ts", + "./apps/template-settings/main-page.ts", + "./apps/template-settings/view-model.ts", + "./apps/template-tab-navigation/app.ts", + "./apps/template-tab-navigation/main-page.ts", + "./apps/tests/TKUnit.ts", + "./apps/tests/app/app.ts", + "./apps/tests/app/location-example.ts", + "./apps/tests/app/mainPage.ts", + "./apps/tests/app/pageNavigation.ts", + "./apps/tests/app/style_props.ts", + "./apps/tests/app/testPage.ts", + "./apps/tests/app/testRunnerPage.ts", + "./apps/tests/application-settings-tests.ts", + "./apps/tests/application-tests-common.ts", + "./apps/tests/application-tests.android.ts", + "./apps/tests/application-tests.ios.ts", + "./apps/tests/camera-tests.ts", + "./apps/tests/color-tests.ts", + "./apps/tests/console-tests.ts", + "./apps/tests/file-name-resolver-tests/file-name-resolver-tests.ts", + "./apps/tests/file-system-access-tests/file-system-access-tests.ts", + "./apps/tests/file-system-tests.ts", + "./apps/tests/fps-meter-tests.ts", + "./apps/tests/frame-tests.ts", + "./apps/tests/gestures-tests.ts", + "./apps/tests/http-tests.ts", + "./apps/tests/image-source-tests.ts", + "./apps/tests/layouts/absolute-layout-tests.ts", + "./apps/tests/layouts/dock-layout-tests.ts", + "./apps/tests/layouts/grid-layout-tests.ts", + "./apps/tests/layouts/layout-helper.ts", + "./apps/tests/layouts/stack-layout-tests.ts", + "./apps/tests/layouts/wrap-layout-tests.ts", + "./apps/tests/location-tests.ts", + "./apps/tests/observable-array-tests.ts", + "./apps/tests/pages/app.ts", + "./apps/tests/pages/file-load-test.ts", + "./apps/tests/pages/navigation/pageA-new-activity.ts", + "./apps/tests/pages/navigation/pageA.ts", + "./apps/tests/pages/navigation/pageB-new-activity.ts", + "./apps/tests/pages/navigation/pageB.ts", + "./apps/tests/pages/navigation/pageC-new-activity.ts", + "./apps/tests/pages/navigation/pageC.ts", + "./apps/tests/pages/page10.ts", + "./apps/tests/pages/page11.ts", + "./apps/tests/pages/page12.ts", + "./apps/tests/pages/page13.ts", + "./apps/tests/pages/page15.ts", + "./apps/tests/pages/page16.ts", + "./apps/tests/pages/page17.ts", + "./apps/tests/pages/page5.ts", + "./apps/tests/pages/page6.ts", + "./apps/tests/pages/page7.ts", + "./apps/tests/pages/page8.ts", + "./apps/tests/pages/page9.ts", + "./apps/tests/pages/property-bindings.ts", + "./apps/tests/pages/sandbox-project.ts", + "./apps/tests/platform-tests.ts", + "./apps/tests/styling/app.ts", + "./apps/tests/styling/mainPage.ts", + "./apps/tests/testRunner.ts", + "./apps/tests/text/formatted-string-tests.ts", + "./apps/tests/timer-tests.ts", + "./apps/tests/trace-tests.ts", + "./apps/tests/ui-test.ts", + "./apps/tests/ui/activity-indicator/activity-indicator-tests.ts", + "./apps/tests/ui/bindable-tests.ts", + "./apps/tests/ui/border/border-tests.ts", + "./apps/tests/ui/button/button-tests-native.android.ts", + "./apps/tests/ui/button/button-tests-native.d.ts", + "./apps/tests/ui/button/button-tests-native.ios.ts", + "./apps/tests/ui/button/button-tests.ts", + "./apps/tests/ui/date-picker/date-picker-tests-native.android.ts", + "./apps/tests/ui/date-picker/date-picker-tests-native.d.ts", + "./apps/tests/ui/date-picker/date-picker-tests-native.ios.ts", + "./apps/tests/ui/date-picker/date-picker-tests.ts", + "./apps/tests/ui/dependency-observable-tests.ts", + "./apps/tests/ui/dialogs/dialog-tests.ts", + "./apps/tests/ui/helper.ts", + "./apps/tests/ui/image-cache/image-cache-tests.ts", + "./apps/tests/ui/image/image-tests.ts", + "./apps/tests/ui/label/label-tests-native.android.ts", + "./apps/tests/ui/label/label-tests-native.d.ts", + "./apps/tests/ui/label/label-tests-native.ios.ts", + "./apps/tests/ui/label/label-tests.ts", + "./apps/tests/ui/list-picker/list-picker-tests-native.android.ts", + "./apps/tests/ui/list-picker/list-picker-tests-native.d.ts", + "./apps/tests/ui/list-picker/list-picker-tests-native.ios.ts", + "./apps/tests/ui/list-picker/list-picker-tests.ts", + "./apps/tests/ui/list-view/list-view-tests.ts", + "./apps/tests/ui/observable-tests.ts", + "./apps/tests/ui/page/page-tests-common.ts", + "./apps/tests/ui/page/page-tests.android.ts", + "./apps/tests/ui/page/page-tests.ios.ts", + "./apps/tests/ui/page/test-page-module.ts", + "./apps/tests/ui/progress/progress-tests.ts", + "./apps/tests/ui/scroll-view/scroll-view-tests.ts", + "./apps/tests/ui/search-bar/search-bar-tests.ts", + "./apps/tests/ui/segmented-bar/segmented-bar-tests-native.android.ts", + "./apps/tests/ui/segmented-bar/segmented-bar-tests-native.d.ts", + "./apps/tests/ui/segmented-bar/segmented-bar-tests-native.ios.ts", + "./apps/tests/ui/segmented-bar/segmented-bar-tests.ts", + "./apps/tests/ui/slider/slider-tests.ts", + "./apps/tests/ui/style/style-properties-tests.ts", + "./apps/tests/ui/style/style-tests.ts", + "./apps/tests/ui/style/value-source-tests.ts", + "./apps/tests/ui/style/visual-state-tests.ts", + "./apps/tests/ui/switch/switch-tests.ts", + "./apps/tests/ui/tab-view/tab-view-tests-native.android.ts", + "./apps/tests/ui/tab-view/tab-view-tests-native.d.ts", + "./apps/tests/ui/tab-view/tab-view-tests-native.ios.ts", + "./apps/tests/ui/tab-view/tab-view-tests.ts", + "./apps/tests/ui/text-field/text-field-tests-native.android.ts", + "./apps/tests/ui/text-field/text-field-tests-native.d.ts", + "./apps/tests/ui/text-field/text-field-tests-native.ios.ts", + "./apps/tests/ui/text-field/text-field-tests.ts", + "./apps/tests/ui/text-view/text-view-tests-native.android.ts", + "./apps/tests/ui/text-view/text-view-tests-native.d.ts", + "./apps/tests/ui/text-view/text-view-tests-native.ios.ts", + "./apps/tests/ui/text-view/text-view-tests.ts", + "./apps/tests/ui/time-picker/time-picker-tests-native.android.ts", + "./apps/tests/ui/time-picker/time-picker-tests-native.d.ts", + "./apps/tests/ui/time-picker/time-picker-tests-native.ios.ts", + "./apps/tests/ui/time-picker/time-picker-tests.ts", + "./apps/tests/ui/view/view-tests-common.ts", + "./apps/tests/ui/view/view-tests.android.ts", + "./apps/tests/ui/view/view-tests.ios.ts", + "./apps/tests/ui/web-view/web-view-tests.ts", + "./apps/tests/virtual-array-tests.ts", + "./apps/tests/xml-declaration/app.ts", + "./apps/tests/xml-declaration/mainPage.ts", + "./apps/tests/xml-declaration/mymodule/MyControl.ts", + "./apps/tests/xml-declaration/mymodulewithxml/MyControl.ts", + "./apps/tests/xml-declaration/xml-declaration-tests.ts", + "./apps/tests/xml-parser-tests/xml-parser-tests.ts", + "./apps/ui-tests-app/app.ts", + "./apps/ui-tests-app/mainPage.ts", + "./apps/ui-tests-app/pages/gestures.ts", + "./apps/ui-tests-app/pages/i61.ts", + "./apps/ui-tests-app/pages/i73.ts", + "./apps/web-view-demo/app.ts", + "./apps/web-view-demo/main-page.ts", + "./apps/web-view-demo/model.ts", + "./apps/wrap-layout-demo/app.ts", + "./apps/wrap-layout-demo/mainPage.ts", + "./apps/xml-demo/app.ts", + "./apps/xml-demo/mainPage.ts", + "./camera/camera-common.ts", + "./camera/camera.android.ts", + "./camera/camera.d.ts", + "./camera/camera.ios.ts", + "./color/color-common.ts", + "./color/color.android.ts", + "./color/color.d.ts", + "./color/color.ios.ts", + "./color/known-colors.ts", + "./console/console-native.android.ts", + "./console/console-native.d.ts", + "./console/console-native.ios.ts", + "./console/console.d.ts", + "./console/console.ts", + "./data/observable-array/observable-array.d.ts", + "./data/observable-array/observable-array.ts", + "./data/observable/observable.d.ts", + "./data/observable/observable.ts", + "./data/virtual-array/virtual-array.d.ts", + "./data/virtual-array/virtual-array.ts", + "./declarations.android.d.ts", + "./declarations.d.ts", + "./declarations.ios.d.ts", + "./file-system/file-name-resolver.d.ts", + "./file-system/file-name-resolver.ts", + "./file-system/file-system-access.android.ts", + "./file-system/file-system-access.d.ts", + "./file-system/file-system-access.ios.ts", + "./file-system/file-system.d.ts", + "./file-system/file-system.ts", + "./fps-meter/fps-meter.d.ts", + "./fps-meter/fps-meter.ts", + "./fps-meter/fps-native.android.ts", + "./fps-meter/fps-native.d.ts", + "./fps-meter/fps-native.ios.ts", + "./globals/globals.ts", + "./http/http-request.android.ts", + "./http/http-request.d.ts", + "./http/http-request.ios.ts", + "./http/http.d.ts", + "./http/http.ts", + "./image-source/image-source-common.ts", + "./image-source/image-source.android.ts", + "./image-source/image-source.d.ts", + "./image-source/image-source.ios.ts", + "./ios.d.ts", + "./js-libs/easysax/easysax.d.ts", + "./js-libs/esprima/esprima.d.ts", + "./js-libs/polymer-expressions/polymer-expressions.d.ts", + "./js-libs/reworkcss/reworkcss.d.ts", + "./libjs.d.ts", + "./location/location-common.ts", + "./location/location.android.ts", + "./location/location.d.ts", + "./location/location.ios.ts", + "./platform/platform.android.ts", + "./platform/platform.d.ts", + "./platform/platform.ios.ts", + "./text/formatted-string-common.ts", + "./text/formatted-string.android.ts", + "./text/formatted-string.d.ts", + "./text/formatted-string.ios.ts", + "./text/span-common.ts", + "./text/span.android.ts", + "./text/span.d.ts", + "./text/span.ios.ts", + "./text/text.android.ts", + "./text/text.d.ts", + "./text/text.ios.ts", + "./timer/timer.android.ts", + "./timer/timer.d.ts", + "./timer/timer.ios.ts", + "./trace/trace.d.ts", + "./trace/trace.ts", + "./ui/activity-indicator/activity-indicator-common.ts", + "./ui/activity-indicator/activity-indicator.android.ts", + "./ui/activity-indicator/activity-indicator.d.ts", + "./ui/activity-indicator/activity-indicator.ios.ts", + "./ui/border/border-common.ts", + "./ui/border/border.android.ts", + "./ui/border/border.d.ts", + "./ui/border/border.ios.ts", + "./ui/builder/binding-builder.ts", + "./ui/builder/builder.d.ts", + "./ui/builder/builder.ts", + "./ui/builder/component-builder.d.ts", + "./ui/builder/component-builder.ts", + "./ui/builder/template-builder.d.ts", + "./ui/builder/template-builder.ts", + "./ui/button/button-common.ts", + "./ui/button/button.android.ts", + "./ui/button/button.d.ts", + "./ui/button/button.ios.ts", + "./ui/content-view/content-view.d.ts", + "./ui/content-view/content-view.ts", + "./ui/core/bindable.d.ts", + "./ui/core/bindable.ts", + "./ui/core/control-state-change.d.ts", + "./ui/core/control-state-change.ios.ts", + "./ui/core/dependency-observable.d.ts", + "./ui/core/dependency-observable.ts", + "./ui/core/proxy.d.ts", + "./ui/core/proxy.ts", + "./ui/core/view-common.ts", + "./ui/core/view.android.ts", + "./ui/core/view.d.ts", + "./ui/core/view.ios.ts", + "./ui/core/weak-event-listener.d.ts", + "./ui/core/weak-event-listener.ts", + "./ui/date-picker/date-picker-common.ts", + "./ui/date-picker/date-picker.android.ts", + "./ui/date-picker/date-picker.d.ts", + "./ui/date-picker/date-picker.ios.ts", + "./ui/dialogs/dialogs-common.ts", + "./ui/dialogs/dialogs.android.ts", + "./ui/dialogs/dialogs.d.ts", + "./ui/dialogs/dialogs.ios.ts", + "./ui/editable-text-base/editable-text-base-common.ts", + "./ui/editable-text-base/editable-text-base.android.ts", + "./ui/editable-text-base/editable-text-base.d.ts", + "./ui/editable-text-base/editable-text-base.ios.ts", + "./ui/enums/enums.d.ts", + "./ui/enums/enums.ts", + "./ui/frame/frame-common.ts", + "./ui/frame/frame.android.ts", + "./ui/frame/frame.d.ts", + "./ui/frame/frame.ios.ts", + "./ui/gestures/gestures-common.ts", + "./ui/gestures/gestures.android.ts", + "./ui/gestures/gestures.d.ts", + "./ui/gestures/gestures.ios.ts", + "./ui/image-cache/image-cache-common.ts", + "./ui/image-cache/image-cache.android.ts", + "./ui/image-cache/image-cache.d.ts", + "./ui/image-cache/image-cache.ios.ts", + "./ui/image/image-common.ts", + "./ui/image/image.android.ts", + "./ui/image/image.d.ts", + "./ui/image/image.ios.ts", + "./ui/label/label-common.ts", + "./ui/label/label.android.ts", + "./ui/label/label.d.ts", + "./ui/label/label.ios.ts", + "./ui/layouts/absolute-layout/absolute-layout.d.ts", + "./ui/layouts/absolute-layout/absolute-layout.ts", + "./ui/layouts/dock-layout/dock-layout.d.ts", + "./ui/layouts/dock-layout/dock-layout.ts", + "./ui/layouts/grid-layout/grid-layout.d.ts", + "./ui/layouts/grid-layout/grid-layout.ts", + "./ui/layouts/layout.d.ts", + "./ui/layouts/layout.ts", + "./ui/layouts/stack-layout/stack-layout.d.ts", + "./ui/layouts/stack-layout/stack-layout.ts", + "./ui/layouts/wrap-layout/wrap-layout.d.ts", + "./ui/layouts/wrap-layout/wrap-layout.ts", + "./ui/list-picker/list-picker-common.ts", + "./ui/list-picker/list-picker.android.ts", + "./ui/list-picker/list-picker.d.ts", + "./ui/list-picker/list-picker.ios.ts", + "./ui/list-view/list-view-common.ts", + "./ui/list-view/list-view.android.ts", + "./ui/list-view/list-view.d.ts", + "./ui/list-view/list-view.ios.ts", + "./ui/page/page-common.ts", + "./ui/page/page.android.ts", + "./ui/page/page.d.ts", + "./ui/page/page.ios.ts", + "./ui/placeholder/placeholder-common.ts", + "./ui/placeholder/placeholder.android.ts", + "./ui/placeholder/placeholder.d.ts", + "./ui/placeholder/placeholder.ios.ts", + "./ui/progress/progress-common.ts", + "./ui/progress/progress.android.ts", + "./ui/progress/progress.d.ts", + "./ui/progress/progress.ios.ts", + "./ui/scroll-view/scroll-view-common.ts", + "./ui/scroll-view/scroll-view.android.ts", + "./ui/scroll-view/scroll-view.d.ts", + "./ui/scroll-view/scroll-view.ios.ts", + "./ui/search-bar/search-bar-common.ts", + "./ui/search-bar/search-bar.android.ts", + "./ui/search-bar/search-bar.d.ts", + "./ui/search-bar/search-bar.ios.ts", + "./ui/segmented-bar/segmented-bar-common.ts", + "./ui/segmented-bar/segmented-bar.android.ts", + "./ui/segmented-bar/segmented-bar.d.ts", + "./ui/segmented-bar/segmented-bar.ios.ts", + "./ui/slide-out/slide-out-common.ts", + "./ui/slide-out/slide-out.android.ts", + "./ui/slide-out/slide-out.d.ts", + "./ui/slide-out/slide-out.ios.ts", + "./ui/slider/slider-common.ts", + "./ui/slider/slider.android.ts", + "./ui/slider/slider.d.ts", + "./ui/slider/slider.ios.ts", + "./ui/styling/converters.ts", + "./ui/styling/css-selector.d.ts", + "./ui/styling/css-selector.ts", + "./ui/styling/style-property.d.ts", + "./ui/styling/style-property.ts", + "./ui/styling/style-scope.ts", + "./ui/styling/style.ts", + "./ui/styling/stylers-common.ts", + "./ui/styling/stylers.android.ts", + "./ui/styling/stylers.d.ts", + "./ui/styling/stylers.ios.ts", + "./ui/styling/styling.d.ts", + "./ui/styling/styling.ts", + "./ui/styling/visual-state-constants.d.ts", + "./ui/styling/visual-state-constants.ts", + "./ui/styling/visual-state.ts", + "./ui/switch/switch-common.ts", + "./ui/switch/switch.android.ts", + "./ui/switch/switch.d.ts", + "./ui/switch/switch.ios.ts", + "./ui/tab-view/tab-view-common.ts", + "./ui/tab-view/tab-view.android.ts", + "./ui/tab-view/tab-view.d.ts", + "./ui/tab-view/tab-view.ios.ts", + "./ui/text-base/text-base.d.ts", + "./ui/text-base/text-base.ts", + "./ui/text-field/text-field-common.ts", + "./ui/text-field/text-field.android.ts", + "./ui/text-field/text-field.d.ts", + "./ui/text-field/text-field.ios.ts", + "./ui/text-view/text-view-common.ts", + "./ui/text-view/text-view.android.ts", + "./ui/text-view/text-view.d.ts", + "./ui/text-view/text-view.ios.ts", + "./ui/time-picker/time-picker-common.ts", + "./ui/time-picker/time-picker.android.ts", + "./ui/time-picker/time-picker.d.ts", + "./ui/time-picker/time-picker.ios.ts", + "./ui/tool-bar/tool-bar-common.ts", + "./ui/tool-bar/tool-bar.android.ts", + "./ui/tool-bar/tool-bar.d.ts", + "./ui/tool-bar/tool-bar.ios.ts", + "./ui/web-view/web-view-common.ts", + "./ui/web-view/web-view.android.ts", + "./ui/web-view/web-view.d.ts", + "./ui/web-view/web-view.ios.ts", + "./utils/android_constants.ts", + "./utils/module-merge.ts", + "./utils/number-utils.ts", + "./utils/types.d.ts", + "./utils/types.ts", + "./utils/utils-common.ts", + "./utils/utils.android.ts", + "./utils/utils.d.ts", + "./utils/utils.ios.ts", + "./xml/xml.d.ts", + "./xml/xml.ts" + ] +}