chromium-proxy-settings/common.ts

7 lines
100 B
TypeScript
Raw Normal View History

2024-02-18 14:10:13 +01:00
export interface Storage {
active: boolean,
host: string,
port: number,
bypass: string[];
}