mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
58feb07119
This has a side effect of adding #23 as well. A more performant caching method is probably needed (as this doesn't cache at all).
16 lines
371 B
TypeScript
16 lines
371 B
TypeScript
export interface Integration {
|
|
type: string;
|
|
integrationType: string;
|
|
userId: string;
|
|
name: string;
|
|
avatar: string;
|
|
about: string; // nullable
|
|
isEnabled: boolean;
|
|
isBroken: boolean;
|
|
hasConfig: boolean;
|
|
}
|
|
|
|
export interface RSSIntegration extends Integration {
|
|
feeds: string[];
|
|
immutableFeeds: {url: string, ownerId: string}[];
|
|
} |