Documentation
    Preparing search index...

    Interface ServiceInfo

    Information about an available service, as reported in discovery responses. Mirrors the ServiceDescriptor shape from @napplet/core.

    const info: ServiceInfo = {
    name: 'audio',
    version: '1.0.0',
    description: 'Audio playback and mute control',
    };
    interface ServiceInfo {
        description?: string;
        name: string;
        version: string;
    }
    Index

    Properties

    description?: string

    Optional human-readable description.

    name: string

    Service identifier (e.g., 'audio', 'notifications').

    version: string

    Semver version of the service.