data-cap
    Preparing search index...

    Interface RawOperationPresence

    One operation's statically-detected presence of a processor/optimistic key on its config object literal -- a structural AST-key-presence check, the same technique extractOperationWrites already uses for writes, never an evaluation of what the function actually does (ADR 0002 stays fully honored: this can tell a processor key exists without knowing anything about what it computes). See ADR 0050.

    interface RawOperationPresence {
        hasOptimistic: boolean;
        hasProcessor: boolean;
        name: string;
    }
    Index
    hasOptimistic: boolean

    Whether this operation's config object literal has an optimistic key at all -- structurally always false for a getter/subscription, since GetterDefinition/SubscriptionDefinition never declare one.

    hasProcessor: boolean

    Whether this operation's config object literal has a processor key at all.

    name: string

    The operation's key name.