7 lines
143 B
TypeScript
7 lines
143 B
TypeScript
|
export declare function actionAllowed(action: string, options: {
|
||
|
org?: string;
|
||
|
}): Promise<{
|
||
|
allowed: boolean;
|
||
|
reason: string;
|
||
|
}>;
|