-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
52 lines (44 loc) · 1.53 KB
/
index.d.ts
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
export interface CompositingCentre {
/** Region. */
region: string,
/** Regional Compositing centre. */
centre: string,
/** Sample size. */
samples: number
}
/**
* Loads corpus to enable queries.
* [📦](https://www.npmjs.com/package/@ifct2017/compositingcentres)
* @returns corpus {region ⇒ {region, centre, samples}}
*/
export function load() : Map<string, CompositingCentre>;
/**
* Generates PostgreSQL statements for creating table w/ data.
* [📦](https://www.npmjs.com/package/@ifct2017/compositingcentres)
* @returns CREATE TABLE, INSERT, CREATE VIEW, CREATE INDEX statements
*/
export function sql(tab: string='compositingcentres', opt: object={}) : string;
/**
* Gives path of CSV data file.
* [📦](https://www.npmjs.com/package/@ifct2017/compositingcentres)
* @returns .../index.csv
*/
export function csv() : string;
/**
* Finds matching compositing centres of a region/centre query.
* [📦](https://www.npmjs.com/package/@ifct2017/compositingcentres)
* @param txt region/centre query
* @returns matched compositing centres ⇒ [{region, centre, samples}]
* @examples
* ```javascript
* compositingCentres('west');
* compositingCentres('Mumbai');
* // [ { region: 'West', centre: 'Mumbai', samples: 12 } ]
*
* compositingCentres('what is compositing centre of north east?');
* compositingCentres('North East compositing centre');
* // [ { region: 'North East', centre: 'Guwahati', samples: 11 } ]
* ```
*/
function compositingCentres(txt: string): [CompositingCentre];
export = compositingCentres;