chromium-proxy-settings/common.ts
Mathieu Strypsteen 7f52254c6b
All checks were successful
Build / build (push) Successful in 33s
Add eslint
2024-02-18 14:22:59 +01:00

6 lines
100 B
TypeScript

export interface Storage {
active: boolean,
host: string,
port: number,
bypass: string[];
}