OS Probabilities API - v0.1.0
    Preparing search index...

    Interface TableSpec

    interface TableSpec {
        constraints?: TableConstraints;
        count?: number;
        draw:
            | "weighted_choice"
            | "sample_with_replacement"
            | "sample_without_replacement";
        eligibility?: Predicate[];
        source: string;
        weights?: WeightSpec;
    }
    Index

    Properties

    constraints?: TableConstraints
    count?: number
    draw:
        | "weighted_choice"
        | "sample_with_replacement"
        | "sample_without_replacement"
    eligibility?: Predicate[]
    source: string
    weights?: WeightSpec