authorization.d.ts 143 B

123456
  1. export declare function actionAllowed(action: string, options: {
  2. org?: string;
  3. }): Promise<{
  4. allowed: boolean;
  5. reason: string;
  6. }>;