import { Octokit as OctokitClassLike } from '@octokit/rest' import { PromiseValue } from 'type-fest' export type ReleaseByTagRes = PromiseValue> export const octokit = new OctokitClassLike({ auth: process.env.GITHUB_TOKEN, }) export type Octokit = typeof octokit