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