mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
14 lines
274 B
TypeScript
14 lines
274 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;
|
||
|
}
|