Skip to content

Commit

Permalink
docs: Small error in entity events (#3214)
Browse files Browse the repository at this point in the history
  • Loading branch information
DeltaSAMP authored Nov 21, 2024
1 parent 1d03072 commit c525a61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs/guides/developer-guide/events/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ type BlogPostInputTypes = CreateBlogPostInput | UpdateBlogPostInput | ID | ID[];
* This event is fired whenever a BlogPost is added, updated
* or deleted.
*/
export class BlogPostEvent extends VendureEntityEvent<BlogPost[], BlogPostInputTypes> {
export class BlogPostEvent extends VendureEntityEvent<BlogPost, BlogPostInputTypes> {
constructor(
ctx: RequestContext,
entity: BlogPost,
Expand Down

0 comments on commit c525a61

Please sign in to comment.