UNPKG

591 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type AdminWorkflowsPermissionsLookupResponse = WebAPICallResult & {
3 error?: string;
4 needed?: string;
5 ok?: boolean;
6 permissions?: {
7 [key: string]: Permission;
8 };
9 provided?: string;
10};
11export interface Permission {
12 complete?: boolean;
13 who_can_run?: WhoCanRun;
14}
15export interface WhoCanRun {
16 channel_ids?: string[];
17 org_ids?: string[];
18 permission_type?: string;
19 team_ids?: string[];
20 user_ids?: string[];
21}
22//# sourceMappingURL=AdminWorkflowsPermissionsLookupResponse.d.ts.map
\No newline at end of file