42 lines
1.2 KiB
Rust
42 lines
1.2 KiB
Rust
mod archive;
|
|
mod bookmark;
|
|
mod command;
|
|
mod download;
|
|
mod error;
|
|
mod history;
|
|
mod identifiers;
|
|
mod plugin;
|
|
mod profile;
|
|
mod reading_list;
|
|
mod space;
|
|
mod split;
|
|
mod sync;
|
|
mod tab;
|
|
mod url_text;
|
|
|
|
pub use archive::{ArchiveSource, ArchivedTab};
|
|
pub use bookmark::BookmarkEntry;
|
|
pub use command::{CommandIntent, CommandScope};
|
|
pub use download::{
|
|
DownloadChecksum, DownloadChecksumAlgorithm, DownloadDestination, DownloadEntry,
|
|
DownloadPolicy, DownloadSecurity, DownloadState,
|
|
};
|
|
pub use error::DomainError;
|
|
pub use history::HistoryEntry;
|
|
pub use identifiers::{
|
|
BookmarkId, DownloadId, ProfileId, ReadingListId, SpaceId, SplitId, TabId, WebViewId,
|
|
};
|
|
pub use plugin::{
|
|
PluginContributionPoint, PluginId, PluginManifest, PluginPermission, PluginPermissionRisk,
|
|
PluginSignature, PluginSignatureAlgorithm,
|
|
};
|
|
pub use profile::{Profile, ProfileKind};
|
|
pub use reading_list::{ReadingListEntry, ReadingProgress};
|
|
pub use space::{ArchivePolicy, Space};
|
|
pub use split::{SplitAxis, SplitLayout, SplitPane};
|
|
pub use sync::{
|
|
SyncConnectionState, SyncObjectKind, SyncObjectState, SyncObjectStatus, SyncStatus,
|
|
};
|
|
pub use tab::{BrowserTab, TabFlags, TabState};
|
|
pub use url_text::UrlText;
|