data-cap
    Preparing search index...

    Interface OperationDescriptor

    Static, per-operation metadata -- one entry within a CapabilityDescriptor.

    interface OperationDescriptor {
        hasOptimistic: boolean;
        hasProcessor: boolean;
        kind: "subscription" | "getter" | "mutator";
        writes: FieldOwnership<any> | undefined;
    }
    Index
    hasOptimistic: boolean

    Only meaningful for mutators.

    hasProcessor: boolean

    Whether this operation declares a processor.

    kind: "subscription" | "getter" | "mutator"

    Which kind of operation this is.

    writes: FieldOwnership<any> | undefined

    The operation's declared writes ownership shape (true means the whole capability).