mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 02:24:04 +00:00
431599cb59
This should make the search clients more readable and easier to expand
18 lines
374 B
JavaScript
18 lines
374 B
JavaScript
/**
|
|
* @typedef {Object} SearchResult
|
|
* @property {number} id
|
|
* @property {string} key
|
|
* @property {string} title
|
|
* @property {string} [description]
|
|
* @property {SearchResultThumbnail} [thumbnail]
|
|
*/
|
|
|
|
/**
|
|
* @typedef {Object} SearchResultThumbnail
|
|
* @property {string} url
|
|
* @property {number} [width]
|
|
* @property {number} [height]
|
|
*/
|
|
|
|
/* exported SearchResult */
|