File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -490,7 +490,18 @@ declare module NativeScriptDoctor {
490490 */
491491 validateAndroidHomeEnvVariable ( ) : NativeScriptDoctor . IWarning [ ] ;
492492
493+ /**
494+ * Validates if the provided targetSdk is greater that the minimum supported target SDK.
495+ * @param {number } targetSdk The targetSdk to be validated.
496+ * @return {NativeScriptDoctor.IWarning[] } An array of errors from the validation checks. If there are no errors will return [].
497+ */
493498 validateMinSupportedTargetSdk ( targetSdk : number ) : NativeScriptDoctor . IWarning [ ] ;
499+
500+ /**
501+ * Validates if the provided targetSdk is lower that the maximum supported target SDK.
502+ * @param {number } targetSdk The targetSdk to be validated.
503+ * @return {NativeScriptDoctor.IWarning[] } An array of errors from the validation checks. If there are no errors will return [].
504+ */
494505 validataMaxSupportedTargetSdk ( targetSdk : number ) : NativeScriptDoctor . IWarning [ ] ;
495506
496507 /**
@@ -519,6 +530,9 @@ declare module NativeScriptDoctor {
519530 */
520531 compileSdkVersion : number ;
521532
533+ /**
534+ * A list of the installed Android SDKs.
535+ */
522536 installedTargets : string [ ] ;
523537 }
524538}
You can’t perform that action at this time.
0 commit comments