Documentation
    Preparing search index...

    Interface ServiceDescriptor

    Metadata describing a service handler. Referenced by ServiceHandler.descriptor and the runtime's internal service registry.

    Relocated from the former @napplet/core compatibility shim (DRIFT-CORE-06 deleted in Phase 24). Content unchanged from the v1.1-era definition; this is the canonical location going forward.

    const descriptor: ServiceDescriptor = {
    name: 'audio',
    version: '1.0.0',
    description: 'Audio playback and mute control',
    };
    interface ServiceDescriptor {
        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.