1 | import { Octokit as Core } from "@octokit/core";
|
2 | import { type PaginateInterface } from "@octokit/plugin-paginate-rest";
|
3 | import { legacyRestEndpointMethods } from "@octokit/plugin-rest-endpoint-methods";
|
4 | export type { RestEndpointMethodTypes } from "@octokit/plugin-rest-endpoint-methods";
|
5 | type Constructor<T> = new (...args: any[]) => T;
|
6 | export declare const Octokit: typeof Core & Constructor<ReturnType<typeof legacyRestEndpointMethods> & {
|
7 | paginate: PaginateInterface;
|
8 | }>;
|
9 | export type Octokit = InstanceType<typeof Octokit>;
|