supertokens-node
Version:
NodeJS driver for SuperTokens core
12 lines (11 loc) • 324 B
TypeScript
// @ts-nocheck
import { APIInterface, APIOptions } from "../../../types";
declare const removePermissionsFromRole: (
_: APIInterface,
___: string,
options: APIOptions,
__: any
) => Promise<{
status: "OK" | "UNKNOWN_ROLE_ERROR" | "FEATURE_NOT_ENABLED_ERROR";
}>;
export default removePermissionsFromRole;