You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mediarepo/mediarepo-ui/src/app/components/shared/sidebar/file-search/filter-expression-item/tag-query-item/tag-query-item.component.ts

16 lines
372 B
TypeScript

import {Component, Input} from "@angular/core";
import {TagQuery} from "../../../../../../../api/api-types/files";
@Component({
selector: "app-tag-query-item",
templateUrl: "./tag-query-item.component.html",
styleUrls: ["./tag-query-item.component.scss"]
})
export class TagQueryItemComponent {
@Input() tagQuery!: TagQuery;
constructor() {
}
}