7 lines
100 B
TypeScript
7 lines
100 B
TypeScript
|
export interface Storage {
|
||
|
active: boolean,
|
||
|
host: string,
|
||
|
port: number,
|
||
|
bypass: string[];
|
||
|
}
|