7 lines
138 B
TypeScript
7 lines
138 B
TypeScript
export interface INetworkNode {
|
|
name: string;
|
|
ipv4: string;
|
|
ipv6: string;
|
|
securityLevel: 'private' | 'public' | 'confidential';
|
|
}
|