mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-15 05:37:32 +00:00
fix(native): async fn compile error (#7435)
This commit is contained in:
@@ -9,6 +9,6 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@toeverything/infra": "workspace:*",
|
||||
"electron": "^30.1.1"
|
||||
"electron": "^31.1.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -52,7 +52,7 @@
|
||||
"builder-util-runtime": "^9.2.5-alpha.2",
|
||||
"core-js": "^3.36.1",
|
||||
"cross-env": "^7.0.3",
|
||||
"electron": "^30.1.1",
|
||||
"electron": "^31.1.0",
|
||||
"electron-log": "^5.1.2",
|
||||
"electron-squirrel-startup": "1.0.1",
|
||||
"electron-window-state": "^5.0.3",
|
||||
|
||||
8
packages/frontend/native/index.d.ts
vendored
8
packages/frontend/native/index.d.ts
vendored
@@ -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