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