mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-29 08:09:52 +08:00
fix(native): async fn compile error (#7435)
This commit is contained in:
Vendored
+4
-4
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user