We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10e5dec commit 03181e2Copy full SHA for 03181e2
lib/IAMClient.d.ts
@@ -59,13 +59,13 @@ declare class VaultClient {
59
* @param {string} accountName - account name
60
* @param {object} options - additional creation params
61
* @param {string} options.email - account email
62
- * @param {string} [options.quota] - maximum quota for the account
+ * @param {bigint | number} [options.quota] - maximum quota for the account
63
* @param {VaultClient~requestCallback} callback - callback
64
* @returns {undefined}
65
*/
66
createAccount(accountName: string, options: {
67
email: string;
68
- quota?: string;
+ quota?: bigint | number;
69
}, callback: any): undefined;
70
/**
71
* Create a password for an account
lib/IAMClient.d.ts.map
0 commit comments