UNPKG

697 BTypeScriptView Raw
1export = Oracle;
2declare class Oracle {
3 constructor(context: any);
4 pkg: any;
5 /**
6 * Tries to guess the name from package.json
7 */
8 guessAppName(): any;
9 /**
10 * Tries to guess the description from package.json
11 */
12 guessDescription(): any;
13 /**
14 * Tries to guess the version from package.json
15 */
16 guessVersion(): any;
17 /**
18 * Tries to guess the developer {name, email, url} from package.json
19 */
20 guessDeveloper(): any;
21 /**
22 * Tries to guess the developer name from package.json
23 */
24 guessDeveloperName(): any;
25 /**
26 * Tries to guess the developer URL from package.json
27 */
28 guessDeveloperURL(): any;
29}