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