Prettier -_-

This commit is contained in:
Michael Telatynski 2025-01-29 10:56:48 +00:00
parent 2edfce5e7a
commit 776d07730a

View File

@ -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<ExportFormat, ExportType> {
// @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<UserIdentifierCustomisations>;
// @deprecated (undocumented)
readonly _registerLegacyWidgetPermissionsCustomisations: LegacyCustomisations<
WidgetPermissionsCustomisations<never, never>
>;
readonly _registerLegacyWidgetPermissionsCustomisations: LegacyCustomisations<WidgetPermissionsCustomisations<never, never>>;
// @deprecated (undocumented)
readonly _registerLegacyWidgetVariablesCustomisations: LegacyCustomisations<WidgetVariablesCustomisations>;
}
@ -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)
```