slack-edge
Version:
Slack app development framework for edge functions with streamlined TypeScript support
18 lines • 412 B
TypeScript
/**
* Valid result generated by authorize() function call.
*/
export interface AuthorizeResult {
enterpriseId?: string;
teamId?: string;
team?: string;
url?: string;
botId: string;
botUserId: string;
botToken: string;
botScopes: string[];
userId?: string;
user?: string;
userToken?: string;
userScopes?: string[];
}
//# sourceMappingURL=authorize-result.d.ts.map