Files
integrations/ts/protocols/mdns/index.ts
T

8 lines
145 B
TypeScript
Raw Normal View History

2026-05-05 12:01:30 +00:00
export interface IMdnsRecord {
host?: string;
port?: number;
txt?: Record<string, string | undefined>;
name?: string;
type?: string;
}