mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-12-07 04:53:50 +01:00
15 lines
415 B
TypeScript
15 lines
415 B
TypeScript
import Server from './mdns-server';
|
|
import Service, { ServiceConfig } from './service';
|
|
export declare class Registry {
|
|
private server;
|
|
private services;
|
|
constructor(server: Server);
|
|
publish(config: ServiceConfig): Service;
|
|
unpublishAll(callback: CallableFunction | undefined): void;
|
|
destroy(): void;
|
|
private probe;
|
|
private announce;
|
|
private teardown;
|
|
}
|
|
export default Registry;
|