@octokit/types#EndpointDefaults TypeScript Examples
The following examples show how to use
@octokit/types#EndpointDefaults.
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: defaults.d.ts From aws-ssm-send-command with MIT License | 5 votes |
DEFAULTS: EndpointDefaults
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: parse.d.ts From aws-ssm-send-command with MIT License | 5 votes |
export declare function parse(options: EndpointDefaults): RequestOptions;
Example #4
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;