PeerTube/client/angular/app/search.ts
2016-05-23 09:38:38 +02:00

7 lines
138 B
TypeScript

export type SearchField = "name" | "author" | "podUrl" | "magnetUri";
export interface Search {
field: SearchField;
value: string;
}