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