mirror of https://github.com/Chocobozzz/PeerTube
7 lines
119 B
TypeScript
7 lines
119 B
TypeScript
|
import { SearchField } from './search-field.type';
|
||
|
|
||
|
export interface Search {
|
||
|
field: SearchField;
|
||
|
value: string;
|
||
|
}
|