Files
firegex-traffic-viewer/frontend/src/js/models.ts

20 lines
313 B
TypeScript
Raw Normal View History

2022-06-11 21:57:50 +02:00
export const update_freq = 3000;
export type GeneralStats = {
services:number,
closed:number,
regex:number
}
export type Service = {
id:string,
name:string,
status:string,
public_port:number,
internal_port:number,
n_packets:number,
n_regex:number,
}