matrix-dimension/web/app/shared/models/integration.ts

10 lines
187 B
TypeScript

export interface Integration {
type: string;
userId: string;
name: string;
avatar: string;
about: string; // nullable
isEnabled: boolean;
isBroken: boolean;
}