@ossjs/release
Version:
Minimalistic, opinionated, and predictable release automation tool.
10 lines • 455 B
TypeScript
//#region src/utils/github/validate-access-token.d.ts
declare const requiredGitHubTokenScopes: string[];
declare const GITHUB_NEW_TOKEN_URL: string;
/**
* Check whether the given GitHub access token has sufficient permissions
* for this library to create and publish a new release.
*/
declare function validateAccessToken(accessToken: string): Promise<void>;
//#endregion
export { GITHUB_NEW_TOKEN_URL, requiredGitHubTokenScopes, validateAccessToken };