Skip to content

Commit

Permalink
format and update exported types
Browse files Browse the repository at this point in the history
  • Loading branch information
drewvolz committed Jan 25, 2025
1 parent 959cd82 commit aab3c90
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions ccc-types/bindings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,16 +252,16 @@ export interface Schedule {
export type Stream = {
starttime: string;
location: string;
eid: any;
eid: string;
performer: string;
subtitle: string;
poster: string;
player: string;
status: string;
category: string;
hptitle: string;
categoryTextcolor: string;
categoryColor: string;
categoryTextcolor: string | null;
categoryColor: string | null;
thumb: string;
title: string;
iframesrc: string;
Expand Down
2 changes: 1 addition & 1 deletion ccc-types/src/streams.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use ts_rs::TS;
#[serde(rename_all = "camelCase")]
#[ts(export, rename = "Stream")]
pub struct StreamEntry {
pub starttime:String,
pub starttime: String,
pub location: String,
pub eid: String,
pub performer: String,
Expand Down

0 comments on commit aab3c90

Please sign in to comment.