summaryrefslogtreecommitdiff
path: root/includes/external/matrix/node_modules/matrix-widget-api/lib/interfaces/ICustomWidgetData.d.ts
blob: 862ab54872540f265f74cb727aa650d82d2ac4e2 (plain)
1
2
3
4
5
6
7
8
9
10
import { IWidgetData } from "./IWidget";
/**
 * Widget data for m.custom specifically.
 */
export interface ICustomWidgetData extends IWidgetData {
    /**
     * The URL for the widget if the templated URL is not exactly what will be loaded.
     */
    url?: string;
}