Skip to content

Commit

Permalink
chore(automation): auto format code using deno fmt
Browse files Browse the repository at this point in the history
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
wax911 committed Nov 24, 2024
1 parent e88ab80 commit 12eb243
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 9 deletions.
30 changes: 28 additions & 2 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/series/service/skyhook/remote/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ interface TimeOfDayModel {
}

interface RatingModel {
count: number,
value: string
count: number;
value: string;
}

interface AlternativeTitlesModel {
title: string
title: string;
}

export type SkyhookModel = {
Expand Down Expand Up @@ -74,4 +74,4 @@ export type SkyhookModel = {
images: ImageModel[];
seasons: SeasonModel[];
episodes: EpisodeModel[];
}
};
2 changes: 1 addition & 1 deletion src/series/service/skyhook/transformer/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ export type Show = {
banner?: string;
poster?: string;
fanart?: string;
}
};
6 changes: 4 additions & 2 deletions src/series/service/skyhook/types.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { EpisodeModel, SkyhookModel } from './remote/types.ts';
import { Show } from './transformer/types.ts';

export type SkyhookEpisode = EpisodeModel
export type SkyhookEpisode = EpisodeModel;

export type SkyhookShow = Omit<SkyhookModel, 'firstAired' | 'lastUpdated'> & Show
export type SkyhookShow =
& Omit<SkyhookModel, 'firstAired' | 'lastUpdated'>
& Show;
Empty file.

0 comments on commit 12eb243

Please sign in to comment.