You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi/ClientApp/src/app/issues/components/index.ts

19 lines
564 B

import { IssuesV2Service } from "../../services/issuesv2.service";
import { IdentityService, SearchService } from "../../services";
import { IssuesDetailsComponent } from "./details/details.component";
import { IssueChatComponent } from "./issue-chat/issue-chat.component";
import { ChatBoxComponent } from "../../shared/chat-box/chat-box.component";
export const components: any[] = [
IssuesDetailsComponent,
IssueChatComponent,
ChatBoxComponent,
];
export const providers: any[] = [
IssuesV2Service,
IdentityService,
SearchService,
];