9 lines
240 B
TypeScript
9 lines
240 B
TypeScript
import type { GatewayType } from './GatewayType';
|
|
import type { IpInfo } from './IpInfo';
|
|
export type NetworkInterfaceInfo = {
|
|
name: string | null;
|
|
secure: boolean | null;
|
|
ipInfo: IpInfo | null;
|
|
type: GatewayType | null;
|
|
};
|