graycoreio/daffodil

View on GitHub
libs/authorizenet/src/models/acceptJs/accept.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { AuthorizeNetRequest } from '../request/authorize-net-request';

export interface AcceptType {
  // TODO: narrow down the function type
  // eslint-disable-next-line @typescript-eslint/no-unsafe-function-type, @typescript-eslint/no-restricted-types
  dispatchData(request: AuthorizeNetRequest, callback: Function): void;
}