@signageos/events
v1.2.125
Published
External module composing all private events of CQRS architecture. On frontend is not available
Downloads
2
Keywords
Readme
Events library
External module composing all private events of CQRS architecture. On frontend is not available
Convention
Events
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;
}constandinterfaceare together without new lineconstandinterfaceare named sameinterfaceis withoutIprefixidis asuid
