slack-web-api-client
Version:
Streamlined Slack Web API client for TypeScript
22 lines • 591 B
TypeScript
import type { SlackAPIResponse } from "../response";
export type AdminWorkflowsPermissionsLookupResponse = SlackAPIResponse & {
error?: string;
needed?: string;
ok: boolean;
permissions?: {
[key: string]: Permission;
};
provided?: string;
};
export interface Permission {
complete?: boolean;
who_can_run?: WhoCanRun;
}
export interface WhoCanRun {
channel_ids?: string[];
org_ids?: string[];
permission_type?: string;
team_ids?: string[];
user_ids?: string[];
}
//# sourceMappingURL=AdminWorkflowsPermissionsLookupResponse.d.ts.map