You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
394 B
TypeScript
22 lines
394 B
TypeScript
export interface Config {
|
|
port: number;
|
|
password: string | null;
|
|
tunnel: boolean;
|
|
tunnelDomain: string | null;
|
|
pollRate: number;
|
|
theme: 'dark' | 'light';
|
|
verbose: boolean;
|
|
cmuxPath: string;
|
|
}
|
|
|
|
export const DEFAULT_CONFIG: Config = {
|
|
port: 9870,
|
|
password: null,
|
|
tunnel: true,
|
|
tunnelDomain: null,
|
|
pollRate: 200,
|
|
theme: 'dark',
|
|
verbose: false,
|
|
cmuxPath: 'cmux',
|
|
};
|