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