mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-07-06 04:57:48 +02:00
feat: synchronizer
This commit is contained in:
@@ -134,6 +134,8 @@ export interface StoredProxy {
|
||||
geo_region?: string;
|
||||
geo_city?: string;
|
||||
geo_isp?: string;
|
||||
dynamic_proxy_url?: string;
|
||||
dynamic_proxy_format?: string;
|
||||
}
|
||||
|
||||
export interface LocationItem {
|
||||
@@ -510,6 +512,20 @@ export interface WayfernLaunchResult {
|
||||
cdp_port?: number;
|
||||
}
|
||||
|
||||
// Synchronizer types
|
||||
export interface SyncFollowerState {
|
||||
profile_id: string;
|
||||
profile_name: string;
|
||||
failed_at_url: string | null;
|
||||
}
|
||||
|
||||
export interface SyncSessionInfo {
|
||||
id: string;
|
||||
leader_profile_id: string;
|
||||
leader_profile_name: string;
|
||||
followers: SyncFollowerState[];
|
||||
}
|
||||
|
||||
// Traffic stats types
|
||||
export interface BandwidthDataPoint {
|
||||
timestamp: number;
|
||||
|
||||
Reference in New Issue
Block a user