@octokit/types#RequestParameters TypeScript Examples
The following examples show how to use
@octokit/types#RequestParameters.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: endpoint-with-defaults.d.ts From aws-ssm-send-command with MIT License | 5 votes |
export declare function endpointWithDefaults(defaults: typeof DEFAULTS, route: Route | EndpointOptions, options?: RequestParameters): import("@octokit/types").RequestOptions;
Example #2
Source File: merge.d.ts From aws-ssm-send-command with MIT License | 5 votes |
export declare function merge(defaults: EndpointDefaults | null, route?: Route | RequestParameters, options?: RequestParameters): EndpointDefaults;
Example #3
Source File: with-defaults.d.ts From aws-ssm-send-command with MIT License | 5 votes |
export declare function withDefaults(oldDefaults: EndpointDefaults | null, newDefaults: RequestParameters): EndpointInterface;
Example #4
Source File: with-defaults.d.ts From aws-ssm-send-command with MIT License | 5 votes |
export default function withDefaults(oldEndpoint: EndpointInterface, newDefaults: RequestParameters): RequestInterface;