1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| {
| envelope: "URL",
| transport: "JSONP",
| callbackParamName: "callback",
| services: {
| get: {
| target: "http://api.dojotoolkit.org/jsdoc/jsonp",
| parameters: [
| { name: "name", type: "string", optional: false },
| { name: "exact", type: "boolean", optional: true },
| { name: "recursion", type: "boolean", optional: true },
| { name: "resource", type: "string", optional: true },
| { name: "project", type: "string", optional: true },
| { name: "version", type: "string", optional: true },
| { name: "attributes", type: "array", optional: true }
| ]
| },
| batch: {
| target: "http://api.dojotoolkit.org/jsdoc/jsonp/batch",
| parameters: [
| { name: "names", type: "array", optional: false },
| { name: "exact", type: "boolean", optional: true },
| { name: "recursion", type: "boolean", optional: true },
| { name: "project", type: "string", optional: true },
| { name: "version", type: "string", optional: true },
| { name: "attributes", type: "array", optional: false }
| ]
| }
| }
| }
|
|