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