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