@slack/oauth
Version:
Official library for interacting with Slack's Oauth endpoints
13 lines • 348 B
TypeScript
export interface AuthorizeResult {
botToken?: string;
botRefreshToken?: string;
botTokenExpiresAt?: number;
userToken?: string;
userRefreshToken?: string;
userTokenExpiresAt?: number;
botId?: string;
botUserId?: string;
teamId?: string;
enterpriseId?: string;
}
//# sourceMappingURL=authorize-result.d.ts.map