unsupported-entitlement-error.d.ts 244 B

123456
  1. import { CustomError } from './custom-error';
  2. export declare class UnsupportedEntitlementError extends CustomError {
  3. readonly entitlement: string;
  4. private static ERROR_CODE;
  5. constructor(entitlement: string, userMessage?: string);
  6. }