mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -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;
|
||
|
}
|