Skip to content

Commit

Permalink
chore: 🤖 fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
TomTomB committed Dec 1, 2022
1 parent 07c62e9 commit 2ab9e75
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export interface RoundStageStructureView {
name: string | null;
number: number;
countMatches: number;
number: number;
type: RoundType;
}

Expand Down
5 changes: 5 additions & 0 deletions libs/types/src/lib/pagination.types.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { PaginationView } from './api';

export interface Paginated<T> extends PaginationView {
items: T[];
}
1 change: 1 addition & 0 deletions libs/types/src/lib/public-api.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export * from './api';
export * from './pagination.types';

0 comments on commit 2ab9e75

Please sign in to comment.