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