5 lines
94 B
TypeScript
5 lines
94 B
TypeScript
export type DnsSettings = {
|
|
dhcpServers: string[];
|
|
staticServers: string[] | null;
|
|
};
|