@octokit/oauth-methods
Version:
Set of stateless request methods to create, check, reset, refresh, and delete user access tokens for OAuth and GitHub Apps
13 lines (12 loc) • 695 B
TypeScript
export { VERSION } from "./version.js";
export * from "./get-web-flow-authorization-url.js";
export * from "./exchange-web-flow-code.js";
export * from "./create-device-code.js";
export * from "./exchange-device-code.js";
export * from "./check-token.js";
export * from "./refresh-token.js";
export * from "./scope-token.js";
export * from "./reset-token.js";
export * from "./delete-token.js";
export * from "./delete-authorization.js";
export type { OAuthAppAuthentication, GitHubAppAuthenticationWithExpirationDisabled, GitHubAppAuthenticationWithExpirationEnabled, GitHubAppAuthenticationWithRefreshToken, GitHubAppAuthentication, GitHubAppAuthenticationWithExpiration, } from "./types.js";