/**
 * API options
 */
interface GitHubAPIOptions {
  token: string;
  user: string;
  repo: string;
  branch: string;
}
export { GitHubAPIOptions };