flexiblepersistence
Version:
A CQRS and Event Sourcing platform
23 lines • 453 B
TypeScript
export declare enum CastType {
toJSON = 0,
toObject = 1,
none = 2
}
export type Read = {
array?: CastType;
item?: {
byfilter?: CastType;
byId?: CastType;
} | CastType;
} | CastType;
export type Create = {
array?: CastType;
item?: CastType;
} | CastType;
export type ToCast = {
create?: Create;
read?: Read;
update?: Create;
delete?: Read;
} | CastType;
//# sourceMappingURL=toCast.d.ts.map