5 lines
206 B
TypeScript
5 lines
206 B
TypeScript
import { getGHInstallationClient } from './installationClient'
|
|
import { getGHUserClient } from './userClient'
|
|
|
|
export type GitHubClient = ReturnType<typeof getGHUserClient | typeof getGHInstallationClient>
|