Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit 0703ed9

Browse files
committed
prettier
1 parent 77ac28c commit 0703ed9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lifecycles/BrandingExtensions.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ export interface AppTitleInRoom extends AppTitleBase {
1111
notificationsMuted: boolean;
1212
}
1313

14-
export type AppTitleContext = AppTitleBase|AppTitleInRoom;
14+
export type AppTitleContext = AppTitleBase | AppTitleInRoom;
1515

1616
export interface ProvideBrandingExtensions {
17-
getAppTitle(context: AppTitleContext): string|null;
17+
getAppTitle(context: AppTitleContext): string | null;
1818
}
1919

2020
export abstract class BrandingExtensionsBase implements ProvideBrandingExtensions {
21-
public getAppTitle(context: AppTitleContext): string|null {
21+
public getAppTitle(context: AppTitleContext): string | null {
2222
return null;
2323
}
24-
}
24+
}

0 commit comments

Comments
 (0)