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

    Interface ApplyRulesResult

    Result of applying inference rules.

    interface ApplyRulesResult {
        matchedRules: string[];
        metadata: Record<string, unknown>;
        renderedContent: string | null;
    }
    Index

    Properties

    matchedRules: string[]

    Names of rules that matched.

    metadata: Record<string, unknown>

    Merged metadata from all matching rules.

    renderedContent: string | null

    Rendered template content from the last matching rule with a template, or null.