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