getPermissions(): Promise<PermissionType[]>;
import { Othent } from "@othent/kms";
const othent = new Othent({ appInfo, throwErrors: false, ... });
const permissions = await othent.getPermissions();
console.log(`Othent has the following permissions = ${ permissions.join(", ") }`);