Skip to content

Commit dfdf439

Browse files
committed
Update types
1 parent c92aa87 commit dfdf439

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

types/entities.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export interface User {
4141
export interface SeriesWorkSummary
4242
extends Omit<
4343
WorkSummary,
44-
"category" | "publishedAt" | "rating" | "tags" | "stats"
44+
"category" | "publishedAt" | "rating" | "tags" | "stats" | "locked"
4545
> {
4646
tags: Omit<WorkSummary["tags"], "warnings">;
4747
stats: Omit<WorkSummary["stats"], "comments">;
@@ -53,7 +53,6 @@ export interface Series {
5353
begunAt: string;
5454
updatedAt: string;
5555
authors: WorkSummary["authors"];
56-
5756
description: string | null;
5857
words: number;
5958
stats: {
@@ -62,7 +61,7 @@ export interface Series {
6261
};
6362
completed: boolean;
6463

65-
works: WorkSummary[];
64+
works: SeriesWorkSummary[];
6665
}
6766

6867
export enum WorkRatings {

0 commit comments

Comments
 (0)