base_exception.d.ts 219 B

123456
  1. import BaseError from './base';
  2. import ErrorOptions from './error_options';
  3. declare class EggBaseException<T extends ErrorOptions> extends BaseError<T> {
  4. constructor(options?: T);
  5. }
  6. export default EggBaseException;