6 lines
140 B
TypeScript
6 lines
140 B
TypeScript
import type { WgSubnetClients } from './WgSubnetClients';
|
|
export type WgSubnetConfig = {
|
|
name: string;
|
|
clients: WgSubnetClients;
|
|
};
|