8 lines
145 B
TypeScript
8 lines
145 B
TypeScript
export interface IMdnsRecord {
|
|
host?: string;
|
|
port?: number;
|
|
txt?: Record<string, string | undefined>;
|
|
name?: string;
|
|
type?: string;
|
|
}
|