Skip to content

rulvar API reference


rulvar API reference / @rulvar/rulvar / RefEntryClassification

Type Alias: RefEntryClassification

ts
type RefEntryClassification = 
  | {
  classification: "applied";
}
  | {
  classification: "noop";
  reason: "already_resolved" | "target_abandoned";
  supersededBy: number;
}
  | {
  classification: "invalid";
  detail: string;
};

Defined in: packages/core/dist/index.d.ts

Fold classification of one ref-entry; NEVER persisted.