frontend/.pnpm-store/v3/files/a2/ce912efc1517422415a887a2cfc998488cb317da5b7ba04a38b957492620066c3752bc620b7e802876c14537c805fd231b0c88b10737b3ef06a575473c67cc

19 lines
524 B
Plaintext

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