5 lines
122 B
TypeScript
5 lines
122 B
TypeScript
import type { WgSubnetConfig } from './WgSubnetConfig';
|
|
export type WgSubnetMap = {
|
|
[key: string]: WgSubnetConfig;
|
|
};
|