Skip to content

Commit 2e3d178

Browse files
committed
chore: add description to new properties and methods in interfaces
1 parent 734dd43 commit 2e3d178

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

typings/interfaces.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)