mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-25 14:57:31 +00:00
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 */
|