Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Half-Shot committed Jan 17, 2025
1 parent 77ac28c commit 0703ed9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lifecycles/BrandingExtensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ export interface AppTitleInRoom extends AppTitleBase {
notificationsMuted: boolean;
}

export type AppTitleContext = AppTitleBase|AppTitleInRoom;
export type AppTitleContext = AppTitleBase | AppTitleInRoom;

export interface ProvideBrandingExtensions {
getAppTitle(context: AppTitleContext): string|null;
getAppTitle(context: AppTitleContext): string | null;
}

export abstract class BrandingExtensionsBase implements ProvideBrandingExtensions {
public getAppTitle(context: AppTitleContext): string|null {
public getAppTitle(context: AppTitleContext): string | null {
return null;
}
}
}

0 comments on commit 0703ed9

Please sign in to comment.