External module composing all private events of CQRS architecture. On frontend is not available
26.01.2022 e.g.:
export const LocationCreated = 'Location.LocationCreated';
export interface LocationCreated extends IOriginatorAwareEvent<typeof LocationCreated> {
uid: string;
name: string;
address: string;
floor: string;
coordinates: {
lat: number;
long: number;
};
additionalNote: string;
}
-
const
andinterface
are together without new line -
const
andinterface
are named same -
interface
is withoutI
prefix -
id
is asuid