1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-19 10:54:00 +00:00
Files
browser/apps/desktop/desktop_native/napi/src/lib.rs
2026-02-02 14:13:17 -05:00

26 lines
594 B
Rust

#[macro_use]
extern crate napi_derive;
mod passkey_authenticator_internal;
mod registry;
// NAPI namespaces
// In each of these modules, the types are defined within a nested namespace of
// the same name so that NAPI can export the TypeScript types within a
// namespace.
pub mod autofill;
pub mod autostart;
pub mod autotype;
pub mod biometrics;
pub mod biometrics_v2;
pub mod chromium_importer;
pub mod clipboards;
pub mod ipc;
pub mod logging;
pub mod passkey_authenticator;
pub mod passwords;
pub mod powermonitors;
pub mod processisolations;
pub mod sshagent;
pub mod windows_registry;