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