UNPKG

@security-alliance/octokit-plugin-cache

Version:

Octokit plugin for caching GitHub API responses

10 lines (9 loc) 330 B
import type { OctokitOptions } from "@octokit/core"; import { Octokit } from "@octokit/core"; import type { CacheOptions } from "./types.js"; export declare const cache: (octokit: Octokit, octokitOptions: OctokitOptions) => {}; declare module "@octokit/core" { interface OctokitOptions { cache?: CacheOptions; } }