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