Type alias QueryProperty

QueryProperty: {
    $eq: string;
    $in?: never;
    $skipLockOn?: string[];
} | {
    $eq?: never;
    $in: readonly string[];
    $skipLockOn?: string[];
} | string

Generated using TypeDoc