Skip to content

Commit

Permalink
fix: Fix tsc error about Account
Browse files Browse the repository at this point in the history
  • Loading branch information
neet committed Aug 17, 2021
1 parent d548448 commit 38f848d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/repositories/endorsement-repository.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { version } from '../decorators';
import { Account } from '../entities';
import { Http } from '../http';
import { Paginator } from '../paginator';
import { DefaultPaginationParams, Repository } from '../repository';
Expand Down
1 change: 1 addition & 0 deletions src/repositories/follow-request-repository.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { version } from '../decorators';
import { Account } from '../entities';
import { Http } from '../http';
import { Paginator } from '../paginator';
import { DefaultPaginationParams, Repository } from '../repository';
Expand Down
2 changes: 1 addition & 1 deletion src/repositories/list-repository.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { version } from '../decorators';
import { List } from '../entities';
import { Account, List } from '../entities';
import { Http } from '../http';
import { Paginator } from '../paginator';
import { DefaultPaginationParams, Repository } from '../repository';
Expand Down
1 change: 1 addition & 0 deletions src/repositories/suggestion-repository.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { version } from '../decorators';
import { Account } from '../entities';
import { Http } from '../http';
import { Paginator } from '../paginator';
import { DefaultPaginationParams, Repository } from '../repository';
Expand Down

0 comments on commit 38f848d

Please sign in to comment.