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