Skip to content

Commit

Permalink
fix(): fix invalid import (query interface)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed May 14, 2020
1 parent bf6de0a commit 1b13961
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nestjs/cqrs",
"version": "7.0.0-next.2",
"version": "7.0.0-next.3",
"description": "A lightweight CQRS module for Nest framework (node.js)",
"license": "MIT",
"url": "https://github.com/nestjs/cqrs#readme",
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/queries/query-publisher.interface.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IQuery } from './Query.interface';
import { IQuery } from './query.interface';

export interface IQueryPublisher<QueryBase extends IQuery = IQuery> {
publish<T extends QueryBase = QueryBase>(query: T): any;
Expand Down

0 comments on commit 1b13961

Please sign in to comment.