Interface OnElementCriteria<T>

interface OnElementCriteria<T> {
    collection: string | string[];
    criteria: { [K in string | number | symbol]: T[K] };
    type: "relation" | "reference";
}

Type Parameters

  • T

Properties

collection: string | string[]
criteria: { [K in string | number | symbol]: T[K] }
type: "relation" | "reference"