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