/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/endpoint.d.ts (1707B)
import { APIRequestContext, GlobalOptions } from './api'; import { Schema, SchemaResource } from './schema'; export interface Target { [index: string]: {}; } export declare class Endpoint implements Target, APIRequestContext { _options: GlobalOptions; google: any; [index: string]: {}; constructor(options: {}); /** * Given a schema, add methods and resources to a target. * * @param {object} target The target to which to apply the schema. * @param {object} rootSchema The top-level schema, so we don't lose track of it * during recursion. * @param {object} schema The current schema from which to extract methods and * resources. * @param {object} context The context to add to each method. */ applySchema(target: Target, rootSchema: Schema, schema: SchemaResource, context: APIRequestContext): void; /** * Given a schema, add methods to a target. * * @param {object} target The target to which to apply the methods. * @param {object} rootSchema The top-level schema, so we don't lose track of it * during recursion. * @param {object} schema The current schema from which to extract methods. * @param {object} context The context to add to each method. */ private applyMethodsFromSchema; /** * Given a method schema, add a method to a target. * * @param target The target to which to add the method. * @param schema The top-level schema that contains the rootUrl, etc. * @param method The method schema from which to generate the method. * @param context The context to add to the method. */ private makeMethod; private getPathParams; }