@karmaniverous/jeeves-watcher
    Preparing search index...

    Interface EnrichmentStoreInterface

    Interface for enrichment metadata persistence.

    interface EnrichmentStoreInterface {
        close(): void;
        delete(path: string): void;
        get(path: string): Record<string, unknown> | null;
        list(): string[];
        move(oldPath: string, newPath: string): void;
        set(path: string, metadata: Record<string, unknown>): void;
    }

    Implemented by

    Index

    Methods