20 lines
868 B
TypeScript
20 lines
868 B
TypeScript
export * from "./_baseSchema";
|
|
import { Mobile } from "../EntityDict";
|
|
export type Schema = Mobile["Schema"];
|
|
export type Action = Mobile["Action"];
|
|
export type Projection = Mobile["Projection"];
|
|
export type Filter = Mobile["Filter"];
|
|
export type SortNode = Mobile["SortNode"];
|
|
export type Sorter = Mobile["Sorter"];
|
|
export type Selection = Mobile["Selection"];
|
|
export type Aggregation = Mobile["Aggregation"];
|
|
export type CreateOperationData = Mobile["CreateOperationData"];
|
|
export type CreateSingle = Mobile["CreateSingle"];
|
|
export type CreateMulti = Mobile["CreateMulti"];
|
|
export type Create = Mobile["Create"];
|
|
export type UpdateOperationData = Mobile["UpdateOperationData"];
|
|
export type Update = Mobile["Update"];
|
|
export type RemoveOperationData = Mobile["RemoveOperationData"];
|
|
export type Remove = Mobile["Remove"];
|
|
export type Operation = Mobile["Operation"];
|