We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49bb49c commit a9f8ebaCopy full SHA for a9f8eba
1 file changed
packages/cli/src/rpc/modules/portal.ts
@@ -35,7 +35,7 @@ import type { GetEnrResult } from '../schema/types.js'
35
* @param contentKeysLength The number of content keys that were offered
36
* @returns Object with success array, declined flag, or failed flag
37
*/
38
-function bitToBooleanArray(res: any, contentKeysLength: number): { success?: boolean[]; declined?: boolean; failed?: boolean } {
+function bitToBooleanArray(res: BitArray, contentKeysLength: number): { success?: boolean[]; declined?: boolean; failed?: boolean } {
39
if (res === undefined) {
40
return { declined: true }
41
}
0 commit comments