UNPKG

@slack/oauth

Version:

Official library for interacting with Slack's Oauth endpoints

9 lines 430 B
export interface InstallationQuery<isEnterpriseInstall extends boolean> { teamId: isEnterpriseInstall extends false ? string : undefined; enterpriseId: isEnterpriseInstall extends true ? string : string | undefined; userId?: string; conversationId?: string; isEnterpriseInstall: isEnterpriseInstall; } export type OrgInstallationQuery = InstallationQuery<true>; //# sourceMappingURL=installation-query.d.ts.map