mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
16 lines
381 B
TypeScript
16 lines
381 B
TypeScript
import { Component } from "@angular/core";
|
|
import { NgbActiveModal } from "@ng-bootstrap/ng-bootstrap";
|
|
|
|
export interface CannotUnbridgeDialogContext {
|
|
}
|
|
|
|
@Component({
|
|
templateUrl: "./cannot-unbridge.component.html",
|
|
styleUrls: ["./cannot-unbridge.component.scss"],
|
|
})
|
|
export class TelegramCannotUnbridgeComponent {
|
|
|
|
constructor(public modal: NgbActiveModal) {
|
|
}
|
|
}
|