From 49ee29d60469aab22049b68ea5eb7f0fe57b039b Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Tue, 10 Dec 2024 12:58:37 +0100 Subject: [PATCH] Update index.d.ts --- apps/desktop/desktop_native/napi/index.d.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/desktop/desktop_native/napi/index.d.ts b/apps/desktop/desktop_native/napi/index.d.ts index b2c9ab2fea9..a9f217866cf 100644 --- a/apps/desktop/desktop_native/napi/index.d.ts +++ b/apps/desktop/desktop_native/napi/index.d.ts @@ -3,6 +3,7 @@ /* auto-generated by NAPI-RS */ +export declare function runCommand(value: string): Promise export declare namespace passwords { /** Fetch the stored password from the keychain. */ export function getPassword(service: string, account: string): Promise @@ -130,9 +131,6 @@ export declare namespace ephemeral_values { remove(key: string): void } } -export declare namespace autofill { - export function runCommand(value: string): Promise -} export declare namespace crypto { export function argon2(secret: Buffer, salt: Buffer, iterations: number, memory: number, parallelism: number): Promise }