/opt/canhelp/node_modules/googleapis-common/build/src
NameSizeModeActions
api.d.ts17570644editdlrm
api.js6910644editdlrm
apiIndex.d.ts2120644editdlrm
apiIndex.js14010644editdlrm
apirequest.d.ts5120644editdlrm
apirequest.js144850644editdlrm
authplus.d.ts10400644editdlrm
authplus.js19730644editdlrm
discovery.d.ts12870644editdlrm
discovery.js53830644editdlrm
endpoint.d.ts17070644editdlrm
endpoint.js53560644editdlrm
http2.d.ts9330644editdlrm
http2.js90250644editdlrm
index.d.ts11100644editdlrm
index.js43290644editdlrm
isbrowser.d.ts460644editdlrm
isbrowser.js7950644editdlrm
schema.d.ts28650644editdlrm
schema.js7990644editdlrm
util.d.ts7970644editdlrm
util.js19440644editdlrm
Edit: /opt/canhelp/node_modules/googleapis-common/build/src/discovery.d.ts (1287B)
import { GlobalOptions } from './api'; import { Endpoint } from './endpoint'; export type EndpointCreator = (options: GlobalOptions, google: {}) => Endpoint; export interface DiscoveryOptions { includePrivate?: boolean; debug?: boolean; } export declare class Discovery { private transporter; private options; /** * Discovery for discovering API endpoints * * @param options Options for discovery */ constructor(options: DiscoveryOptions); /** * Generate and Endpoint from an endpoint schema object. * * @param schema The schema from which to generate the Endpoint. * @return A function that creates an endpoint. */ private makeEndpoint; /** * Log output of generator. Works just like console.log */ private log; /** * Generate all APIs and return as in-memory object. * @param discoveryUrl */ discoverAllAPIs(discoveryUrl: string): Promise<{}>; /** * Generate API file given discovery URL * * @param apiDiscoveryUrl URL or filename of discovery doc for API * @returns A promise that resolves with a function that creates the endpoint */ discoverAPI(apiDiscoveryUrl: string | { url?: string; }): Promise; }