1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-12 06:23:38 +00:00

Fix incorrect merge

This commit is contained in:
Bernd Schoolmann
2024-12-10 13:07:56 +01:00
parent 49ee29d604
commit c9bebdcfb0
2 changed files with 4 additions and 1 deletions

View File

@@ -3,7 +3,6 @@
/* auto-generated by NAPI-RS */
export declare function runCommand(value: string): Promise<string>
export declare namespace passwords {
/** Fetch the stored password from the keychain. */
export function getPassword(service: string, account: string): Promise<string>
@@ -131,6 +130,9 @@ export declare namespace ephemeral_values {
remove(key: string): void
}
}
export declare namespace autofill {
export function runCommand(value: string): Promise<string>
}
export declare namespace crypto {
export function argon2(secret: Buffer, salt: Buffer, iterations: number, memory: number, parallelism: number): Promise<Buffer>
}

View File

@@ -580,6 +580,7 @@ pub mod ephemeral_values {
}
}
}
#[napi]
pub mod autofill {
#[napi]
pub async fn run_command(value: String) -> napi::Result<String> {