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