Add missing version doctags

This commit is contained in:
Willy-JL
2024-10-31 17:24:32 +00:00
parent a9df021a70
commit 4312036f8d
2 changed files with 3 additions and 0 deletions

View File

@@ -120,6 +120,7 @@ declare function checkSdkCompatibility(expectedMajor: number, expectedMinor: num
* recognized as a baseline feature. For more info, consult the module * recognized as a baseline feature. For more info, consult the module
* documentation. * documentation.
* @param features Array of named features to query * @param features Array of named features to query
* @version Added in JS SDK 0.1
*/ */
declare function doesSdkSupport(features: string[]): boolean; declare function doesSdkSupport(features: string[]): boolean;
@@ -131,6 +132,7 @@ declare function doesSdkSupport(features: string[]): boolean;
* features that are now recognized as baseline features. For more * features that are now recognized as baseline features. For more
* info, consult the module documentation. * info, consult the module documentation.
* @param features Array of named features to query * @param features Array of named features to query
* @version Added in JS SDK 0.1
*/ */
declare function checkSdkFeatures(features: string[]): void | never; declare function checkSdkFeatures(features: string[]): void | never;

View File

@@ -14,6 +14,7 @@ export declare function success(): void;
/** /**
* @brief Signals failure to the user via the color LED, speaker and vibration * @brief Signals failure to the user via the color LED, speaker and vibration
* motor * motor
* @version Added in JS SDK 0.1
*/ */
export declare function error(): void; export declare function error(): void;