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