mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-29 20:14:02 -06:00
7 lines
138 B
TypeScript
7 lines
138 B
TypeScript
export type SearchField = "name" | "author" | "podUrl" | "magnetUri";
|
|
|
|
export interface Search {
|
|
field: SearchField;
|
|
value: string;
|
|
}
|