chore: Run prettier

This commit is contained in:
2023-08-01 17:09:47 +01:00
parent 90a7d2ca7e
commit 48c48c90c4
8 changed files with 78 additions and 48 deletions

View File

@ -53,7 +53,7 @@ export interface StreamProviderInfo {
balance?: number;
endpoints: Array<StreamProviderEndpoint>;
tosAccepted?: boolean;
tosLink?: string
tosLink?: string;
}
export interface StreamProviderEndpoint {
@ -66,11 +66,11 @@ export interface StreamProviderEndpoint {
}
export interface StreamProviderStreamInfo {
title: string
summary: string
image: string
tags: Array<string>
content_warning: string
title: string;
summary: string;
image: string;
tags: Array<string>;
content_warning: string;
}
export class ProviderStore extends ExternalStore<Array<StreamProvider>> {