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