mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
99e0647cd7
Fixes https://github.com/turt2live/matrix-dimension/issues/5 Fixes https://github.com/turt2live/matrix-dimension/issues/8
24 lines
415 B
TypeScript
24 lines
415 B
TypeScript
export interface FE_SlackBridge {
|
|
id: number;
|
|
upstreamId?: number;
|
|
provisionUrl?: string;
|
|
isEnabled: boolean;
|
|
}
|
|
|
|
export interface FE_SlackLink {
|
|
roomId: string;
|
|
isWebhook: boolean;
|
|
channelName: string;
|
|
channelId: string;
|
|
teamId: string;
|
|
}
|
|
|
|
export interface FE_SlackTeam {
|
|
id: string;
|
|
name: string;
|
|
}
|
|
|
|
export interface FE_SlackChannel {
|
|
id: string;
|
|
name: string;
|
|
} |