21 lines
449 B
TypeScript
21 lines
449 B
TypeScript
/**
|
|
* Structure of page metadata
|
|
*/
|
|
export interface EqQueryString {
|
|
/**
|
|
* Query string, that provides the data, to perform a search on
|
|
*/
|
|
query: string;
|
|
|
|
/**
|
|
* Default field to perform a search on, when
|
|
* no field is specified for the query
|
|
*/
|
|
default_field?: string;
|
|
|
|
/**
|
|
* Specific fields, to perform a search on
|
|
* Can't be specified with 'default_field'
|
|
*/
|
|
fields?: string[];
|
|
} |