5 lines
108 B
TypeScript
5 lines
108 B
TypeScript
import type { WgConfig } from './WgConfig';
|
|
export type WgSubnetClients = {
|
|
[key: string]: WgConfig;
|
|
};
|