]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/html/static/js/externs.js
Rollup merge of #92581 - Meziu:armv6k-3ds-target, r=nagisa
[rust.git] / src / librustdoc / html / static / js / externs.js
1 // This file contains type definitions that are processed by the Closure Compiler but are
2 // not put into the JavaScript we include as part of the documentation. It is used for
3 // type checking. See README.md in this directory for more info.
4
5 /* eslint-disable */
6 var searchState;
7 function initSearch(searchIndex){}
8
9 /**
10  * @typedef {{
11  *   raw: string,
12  *   query: string,
13  *   type: string,
14  *   id: string,
15  * }}
16  */
17 var ParsedQuery;
18
19 /**
20  * @typedef {{
21  *    crate: string,
22  *    desc: string,
23  *    id: number,
24  *    name: string,
25  *    normalizedName: string,
26  *    parent: (Object|null|undefined),
27  *    path: string,
28  *    ty: (Number|null|number),
29  *    type: (Array<?>|null)
30  * }}
31  */
32 var Row;