37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import * as Modi from "./Modi/Schema";
|
|
import * as ModiEntity from "./ModiEntity/Schema";
|
|
import * as Oper from "./Oper/Schema";
|
|
import * as OperEntity from "./OperEntity/Schema";
|
|
import * as User from "./User/Schema";
|
|
export declare type ModiIdSubQuery = {
|
|
[K in "$in" | "$nin"]?: (ModiEntity.ModiIdSubQuery & {
|
|
entity: "modiEntity";
|
|
}) | (Modi.ModiIdSubQuery & {
|
|
entity: "modi";
|
|
}) | any;
|
|
};
|
|
export declare type ModiEntityIdSubQuery = {
|
|
[K in "$in" | "$nin"]?: (ModiEntity.ModiEntityIdSubQuery & {
|
|
entity: "modiEntity";
|
|
}) | any;
|
|
};
|
|
export declare type OperIdSubQuery = {
|
|
[K in "$in" | "$nin"]?: (OperEntity.OperIdSubQuery & {
|
|
entity: "operEntity";
|
|
}) | (Oper.OperIdSubQuery & {
|
|
entity: "oper";
|
|
}) | any;
|
|
};
|
|
export declare type OperEntityIdSubQuery = {
|
|
[K in "$in" | "$nin"]?: (OperEntity.OperEntityIdSubQuery & {
|
|
entity: "operEntity";
|
|
}) | any;
|
|
};
|
|
export declare type UserIdSubQuery = {
|
|
[K in "$in" | "$nin"]?: (Oper.UserIdSubQuery & {
|
|
entity: "oper";
|
|
}) | (User.UserIdSubQuery & {
|
|
entity: "user";
|
|
}) | any;
|
|
};
|