From 953ddd82e48dd206cef5ac94456549aed13b3ad5 Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Fri, 17 Nov 2023 23:25:29 +0100 Subject: Updated 30 files and deleted 2976 files (automated) --- .../matrix-widget-api/lib/models/Widget.d.ts | 53 ---------------------- 1 file changed, 53 deletions(-) delete mode 100644 includes/external/matrix/node_modules/matrix-widget-api/lib/models/Widget.d.ts (limited to 'includes/external/matrix/node_modules/matrix-widget-api/lib/models/Widget.d.ts') diff --git a/includes/external/matrix/node_modules/matrix-widget-api/lib/models/Widget.d.ts b/includes/external/matrix/node_modules/matrix-widget-api/lib/models/Widget.d.ts deleted file mode 100644 index d2278e6..0000000 --- a/includes/external/matrix/node_modules/matrix-widget-api/lib/models/Widget.d.ts +++ /dev/null @@ -1,53 +0,0 @@ -import { IWidget, IWidgetData, WidgetType } from ".."; -import { ITemplateParams } from ".."; -/** - * Represents the barest form of widget. - */ -export declare class Widget { - private definition; - constructor(definition: IWidget); - /** - * The user ID who created the widget. - */ - get creatorUserId(): string; - /** - * The type of widget. - */ - get type(): WidgetType; - /** - * The ID of the widget. - */ - get id(): string; - /** - * The name of the widget, or null if not set. - */ - get name(): string | null; - /** - * The title for the widget, or null if not set. - */ - get title(): string | null; - /** - * The templated URL for the widget. - */ - get templateUrl(): string; - /** - * The origin for this widget. - */ - get origin(): string; - /** - * Whether or not the client should wait for the iframe to load. Defaults - * to true. - */ - get waitForIframeLoad(): boolean; - /** - * The raw data for the widget. This will always be defined, though - * may be empty. - */ - get rawData(): IWidgetData; - /** - * Gets a complete widget URL for the client to render. - * @param {ITemplateParams} params The template parameters. - * @returns {string} A templated URL. - */ - getCompleteUrl(params: ITemplateParams): string; -} -- cgit