Interface RuleCompletionChecker

interface RuleCompletionChecker {
    type:
        | "once"
        | "always"
        | "twice"
        | "thrice"
        | "times";
    dispose(): void;
    explain(seenRequestCount: undefined | number): string;
    isComplete(seenRequestCount: number): boolean;
}

Hierarchy (view full)

Implemented by

Properties

Methods

Properties

type:
    | "once"
    | "always"
    | "twice"
    | "thrice"
    | "times"

Methods