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