Skip to content

Commit

Permalink
docs: jsdoc update
Browse files Browse the repository at this point in the history
  • Loading branch information
muneebkq committed Apr 19, 2024
1 parent ec19e71 commit 90b937b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/lexactivator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,13 @@ export class LexActivator {
*
* @param {string} productId the unique product id of your application as mentioned on
* the product page in the dashboard.
* @param {PermissionFlags} flag depending upon whether your application requires admin/root
* permissions to run or not, this parameter can have one of the following values:
* LA_SYSTEM, LA_USER, LA_IN_MEMORY
* @param {PermissionFlags} flag depending on your application's requirements, choose one of
* the following values: LA_USER, LA_SYSTEM, LA_IN_MEMORY, LA_ALL_USERS.
* - LA_USER: This flag indicates that the application does not require admin or root permissions to run.
* - LA_SYSTEM: This flag indicates that the application must be run with admin or root permissions.
* - LA_IN_MEMORY: This flag will store activation data in memory. Thus, requires re-activation
* on every start of the application and should only be used in floating licenses.
* - LA_ALL_USERS: This flag is specifically designed for Windows and should be used for system-wide activations.
* @throws {LexActivatorException}
*/
static SetProductId(productId: string, flag: typeof PermissionFlags[keyof typeof PermissionFlags]): void {
Expand Down

0 comments on commit 90b937b

Please sign in to comment.