📄 service-types.d.ts
/home/palash/git/site/node_modules/bonjour-service/dist/lib/service-types.d.ts
Language: ts • Lines: 7
export interface ServiceType {
    name?: string;
    protocol?: 'tcp' | 'udp' | string | null | undefined;
    subtype?: string | undefined;
}
export declare const toString: (data: ServiceType) => any;
export declare const toType: (string: string) => ServiceType;