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

    Interface ApplyRulesResult

    Result of applying inference rules.

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

    Properties

    matchedRules: string[]

    Names of rules that matched.

    metadata: Record<string, unknown>

    Merged metadata from all matching rules.

    renderAs: string | null

    The renderAs value from the last matching rule that declares it, or null.

    renderedContent: string | null

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