From 776d07730a73c0a9bd7964da128e30cb0d819530 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 29 Jan 2025 10:56:48 +0000 Subject: [PATCH] Prettier -_- --- .../element-web-module-api.api.md | 32 ++++++------------- 1 file changed, 10 insertions(+), 22 deletions(-) diff --git a/packages/element-web-module-api/element-web-module-api.api.md b/packages/element-web-module-api/element-web-module-api.api.md index e70f3295f5..e47e7428f8 100644 --- a/packages/element-web-module-api/element-web-module-api.api.md +++ b/packages/element-web-module-api/element-web-module-api.api.md @@ -3,8 +3,9 @@ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). ```ts -import { ModuleApi } from "@matrix-org/react-sdk-module-api"; -import { RuntimeModule } from "@matrix-org/react-sdk-module-api"; + +import { ModuleApi } from '@matrix-org/react-sdk-module-api'; +import { RuntimeModule } from '@matrix-org/react-sdk-module-api'; // @alpha @deprecated (undocumented) export interface AliasCustomisations { @@ -34,16 +35,7 @@ export interface ChatExportCustomisations { // @alpha @deprecated (undocumented) export interface ComponentVisibilityCustomisations { - shouldShowComponent?( - component: - | "UIComponent.sendInvites" - | "UIComponent.roomCreation" - | "UIComponent.spaceCreation" - | "UIComponent.exploreRooms" - | "UIComponent.addIntegrations" - | "UIComponent.filterContainer" - | "UIComponent.roomOptionsMenu", - ): boolean; + shouldShowComponent?(component: "UIComponent.sendInvites" | "UIComponent.roomCreation" | "UIComponent.spaceCreation" | "UIComponent.exploreRooms" | "UIComponent.addIntegrations" | "UIComponent.filterContainer" | "UIComponent.roomOptionsMenu"): boolean; } // @public @@ -90,9 +82,7 @@ export interface LegacyCustomisationsApiExtension { // @deprecated (undocumented) readonly _registerLegacyUserIdentifierCustomisations: LegacyCustomisations; // @deprecated (undocumented) - readonly _registerLegacyWidgetPermissionsCustomisations: LegacyCustomisations< - WidgetPermissionsCustomisations - >; + readonly _registerLegacyWidgetPermissionsCustomisations: LegacyCustomisations>; // @deprecated (undocumented) readonly _registerLegacyWidgetVariablesCustomisations: LegacyCustomisations; } @@ -191,13 +181,10 @@ export type RuntimeModuleConstructor = new (api: ModuleApi) => RuntimeModule; // @alpha @deprecated (undocumented) export interface UserIdentifierCustomisations { - getDisplayUserIdentifier( - userId: string, - opts: { - roomId?: string; - withDisplayName?: boolean; - }, - ): string | null; + getDisplayUserIdentifier(userId: string, opts: { + roomId?: string; + withDisplayName?: boolean; + }): string | null; } // @alpha @deprecated (undocumented) @@ -221,4 +208,5 @@ export interface WidgetVariablesCustomisations { } // (No @packageDocumentation comment for this package) + ```