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