opnsense: filter queried connections

This commit is contained in:
2024-12-22 00:55:33 -08:00
parent e03bf11fa5
commit bdea663178
12 changed files with 155 additions and 54 deletions

View File

@@ -59,3 +59,11 @@ export interface OpnsenseWgPeers {
* };
* ```
*/
export interface OpnsenseWgServers {
status: "ok" | string | number;
rows: {
name: string;
uuid: string;
}[];
}