frontend/.pnpm-store/v3/files/63/eea891a3c8d774669ea4158682cfda5d9fdd9538059fd389ba0124699f13a79a6a910779215b26c06038d269574797c147549780ad96404a85b23d719ee367

19 lines
548 B
Plaintext

import { Route, RequestParameters } from "@octokit/types";
import { RestEndpointMethods } from "./generated/method-types";
export declare type Api = {
rest: RestEndpointMethods;
};
export declare type EndpointDecorations = {
mapToData?: string;
deprecated?: string;
renamed?: [string, string];
renamedParameters?: {
[name: string]: string;
};
};
export declare type EndpointsDefaultsAndDecorations = {
[scope: string]: {
[methodName: string]: [Route, RequestParameters?, EndpointDecorations?];
};
};