mirror of
https://scm.univ-tours.fr/22107988t/rappaurio-sae501_502.git
synced 2025-08-29 23:55:58 +02:00
10 lines
251 B
TypeScript
10 lines
251 B
TypeScript
/**
|
|
* wiki
|
|
* @example
|
|
* wiki({ apiUrl: 'http://fr.wikipedia.org/w/api.php' }).search(...);
|
|
* @namespace Wiki
|
|
* @param {Object} options
|
|
* @return {Object} - wiki (for chaining methods)
|
|
*/
|
|
export default function wiki(options?: Object): Object;
|