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