unsupported-option-combination-error.d.ts 238 B

1234567
  1. import { CustomError } from './custom-error';
  2. export declare class UnsupportedOptionCombinationError extends CustomError {
  3. private static ERROR_MESSAGE;
  4. code: number;
  5. userMessage: string;
  6. constructor(options: string[]);
  7. }