Skip to content

Commit

Permalink
🎨 fix lint errors
Browse files Browse the repository at this point in the history
Signed-off-by: ff137 <ff137@proton.me>
  • Loading branch information
ff137 committed Aug 16, 2024
1 parent bd11dfe commit 7eb7763
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export const nativeBindings = {
FFI_INT8,
FFI_INT8,
FFI_CALLBACK_PTR,
FFI_CALLBACK_ID
FFI_CALLBACK_ID,
],
],
askar_session_fetch_all_keys: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,16 @@ export class ReactNativeAriesAskar implements AriesAskar {
const { category, sessionHandle, forUpdate, limit, orderBy, descending, tagFilter } = serializeArguments(options)
const handle = await this.promisifyWithResponse<string>((cb) =>
this.handleError(
this.ariesAskar.sessionFetchAll({ cb, category, sessionHandle, forUpdate, limit: limit || -1, orderBy, descending, tagFilter }),
this.ariesAskar.sessionFetchAll({
cb,
category,
sessionHandle,
forUpdate,
limit: limit || -1,
orderBy,
descending,
tagFilter,
}),
),
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ export class Session {
category: string
tagFilter?: Record<string, unknown>
limit?: number
orderBy?: string,
descending: boolean,
orderBy?: string
descending: boolean
forUpdate?: boolean
isJson?: boolean
}) {
Expand Down

0 comments on commit 7eb7763

Please sign in to comment.