PeerTube/client/app/shared/search.model.ts

7 lines
119 B
TypeScript
Raw Normal View History

import { SearchField } from './search-field.type';
export interface Search {
field: SearchField;
value: string;
}