error_options.d.ts 102 B

12345
  1. export default class ErrorOptions {
  2. code?: string;
  3. message: string;
  4. [key: string]: any;
  5. }