aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/angular/app/search.ts
blob: c4e771b4770de544d987ac0dc53cfadfec097ab1 (plain) (blame)
1
2
3
4
5
6
export type SearchField = "name" | "author" | "podUrl" | "magnetUri";

export interface Search {
  field: SearchField;
  value: string;
}