Skip to content
Snippets Groups Projects
Commit abb4b2d7 authored by Stefan Plociennik's avatar Stefan Plociennik
Browse files

moved keyword interface to correct .ts file; removed unnessesary keyword.ts file

parent b1417c98
No related merge requests found
import { Identifiers } from "@angular/compiler";
export interface Keyword{
keywordID: number;
keyword: string;
questions: string[];
}
\ No newline at end of file
import { Component, OnInit } from '@angular/core';
import {Keyword} from './keyword';
import { MatDialogRef } from '@angular/material/dialog';
import { HeaderComponent } from '../header/header.component';
import { NotificationService } from '../../../services/util/notification.service';
......@@ -79,3 +78,9 @@ export class TopicCloudDialogComponent implements OnInit {
console.log("are u sure?");
}
}
export interface Keyword {
keywordID: number;
keyword: string;
questions: string[];
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment