fix(native): async fn compile error (#7435)

This commit is contained in:
LongYinan
2024-07-08 15:04:37 +08:00
committed by GitHub
parent 602d932065
commit ba356f4412
17 changed files with 81 additions and 57 deletions
+4 -4
View File
@@ -1,6 +1,6 @@
/* auto-generated by NAPI-RS */
/* eslint-disable */
export class SqliteConnection {
export declare class SqliteConnection {
constructor(path: string)
connect(): Promise<void>
addBlob(key: string, blob: Uint8Array): Promise<void>
@@ -43,7 +43,7 @@ export interface InsertRow {
data: Uint8Array
}
export function mintChallengeResponse(resource: string, bits?: number | undefined | null): Promise<string>
export declare function mintChallengeResponse(resource: string, bits?: number | undefined | null): Promise<string>
export interface UpdateRow {
id: number
@@ -52,7 +52,7 @@ export interface UpdateRow {
docId?: string
}
export enum ValidationResult {
export declare enum ValidationResult {
MissingTables = 0,
MissingDocIdColumn = 1,
MissingVersionColumn = 2,
@@ -60,5 +60,5 @@ export enum ValidationResult {
Valid = 4
}
export function verifyChallengeResponse(response: string, bits: number, resource: string): Promise<boolean>
export declare function verifyChallengeResponse(response: string, bits: number, resource: string): Promise<boolean>