Skip to content

Commit

Permalink
fix(integration): fixed typo in IntegrationEvent
Browse files Browse the repository at this point in the history
  • Loading branch information
JBBianchi committed Nov 29, 2023
1 parent a36c8a7 commit 27b80ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { IIntegrationEvent } from './integration-event.interface';
/**
* Represents the base class for all integration events
*/
export class IntergrationEvent<T = string> extends DataTransferObject implements IIntegrationEvent<T> {
export class IntegrationEvent<T = string> extends DataTransferObject implements IIntegrationEvent<T> {
constructor(model?: any) {
super(model);
}
Expand Down

0 comments on commit 27b80ae

Please sign in to comment.